/* Debug Panel Styles */
.debug-panel-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: #1e1e1e;
    color: #d4d4d4;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    max-height: 50vh;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.debug-panel-container.collapsed {
    transform: translateY(calc(100% - 45px));
}

.debug-panel-header {
    background: #2d2d30;
    padding: 10px 20px;
    border-bottom: 1px solid #3e3e42;
    cursor: pointer;
    user-select: none;
}

.debug-panel-header:hover {
    background: #3e3e42;
}

.debug-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 15px 20px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
}

.debug-provider-section {
    background: #252526;
    border-radius: 4px;
    padding: 12px;
    border-left: 3px solid #007acc;
}

.debug-provider-title {
    color: #4ec9b0;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}

.debug-log-entries {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.debug-log-entry {
    display: flex;
    gap: 12px;
    padding: 4px 0;
    border-bottom: 1px solid #3e3e42;
}

.debug-log-entry:last-child {
    border-bottom: none;
}

.debug-log-time {
    color: #858585;
    font-size: 11px;
    min-width: 60px;
    flex-shrink: 0;
}

.debug-log-message {
    color: #d4d4d4;
    flex: 1;
}

/* Debug Login Form */
.debug-login-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1040;
    max-width: 350px;
}

/* Scrollbar styling for debug panel */
.debug-panel-body::-webkit-scrollbar {
    width: 8px;
}

.debug-panel-body::-webkit-scrollbar-track {
    background: #1e1e1e;
}

.debug-panel-body::-webkit-scrollbar-thumb {
    background: #424242;
    border-radius: 4px;
}

.debug-panel-body::-webkit-scrollbar-thumb:hover {
    background: #4e4e4e;
}
