/**
 * Ivensio Console Debugger Styles
 *
 * @package    Ivensio
 * @subpackage Ivensio/public/css
 */

#ivensio-console-debugger {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 300px;
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-family: monospace;
    font-size: 12px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    border-top-left-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: height 0.3s ease;
    overflow: hidden;
}

#ivensio-console-debugger .log-entry {
    margin-bottom: 5px;
    padding: 3px 5px;
    border-radius: 3px;
    word-break: break-word;
}

#ivensio-console-debugger button {
    background: #555;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 2px 8px;
    margin-right: 5px;
    cursor: pointer;
    font-size: 11px;
}

#ivensio-console-debugger button:hover {
    background: #777;
}

#ivensio-console-debugger label {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    cursor: pointer;
}

#ivensio-console-debugger input[type="checkbox"] {
    cursor: pointer;
}

/* Custom scrollbar for the console content */
#ivensio-console-debugger div::-webkit-scrollbar {
    width: 8px;
}

#ivensio-console-debugger div::-webkit-scrollbar-track {
    background: #222;
}

#ivensio-console-debugger div::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}

#ivensio-console-debugger div::-webkit-scrollbar-thumb:hover {
    background: #777;
}
