/* /Components/ErrorDisplay.razor.rz.scp.css */
.error-container[b-44523rumqq] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    padding: 2rem;
}

.error-content[b-44523rumqq] {
    text-align: center;
    max-width: 400px;
}

.error-icon[b-44523rumqq] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.error-content h3[b-44523rumqq] {
    color: var(--error-color, #dc3545);
    margin-bottom: 0.5rem;
}

.error-message[b-44523rumqq] {
    color: var(--text-muted, #6c757d);
    margin-bottom: 1.5rem;
    word-break: break-word;
}

.error-actions[b-44523rumqq] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.error-actions .btn[b-44523rumqq] {
    margin: 0.25rem;
}
/* /Components/HistoryTabs.razor.rz.scp.css */
/* History Tabs Component Styles */

.history-tabs[b-u8eqib2r9i] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color, #e0e0e0);
}

.history-tab[b-u8eqib2r9i] {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary, #666);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    top: 2px;
}

.history-tab:hover[b-u8eqib2r9i] {
    color: var(--text-primary, #333);
    background-color: var(--hover-bg, rgba(0, 0, 0, 0.05));
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 4px 15px var(--glow-secondary),
                0 2px 6px var(--glow-secondary-secondary);
}

.history-tab:focus[b-u8eqib2r9i] {
    outline: none;
}

.history-tab:focus-visible[b-u8eqib2r9i] {
    outline: 2px solid var(--focus-color, #4a90e2);
    outline-offset: 2px;
}

.history-tab.active[b-u8eqib2r9i] {
    color: var(--text-primary, #333);
    font-weight: 600;
    border-bottom-color: var(--accent-color, #4a90e2);
}

.history-tab.active:hover[b-u8eqib2r9i] {
    transform: scale(1.1) translateY(-2px);
}

.history-tab[aria-selected="true"][b-u8eqib2r9i] {
    font-weight: 600;
}

/* Animation for tab switching */
.history-tab[b-u8eqib2r9i] {
    animation: fadeIn-b-u8eqib2r9i 0.2s ease-in-out;
}

@keyframes fadeIn-b-u8eqib2r9i {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .history-tabs[b-u8eqib2r9i] {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .history-tab[b-u8eqib2r9i] {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .history-tabs[b-u8eqib2r9i] {
        border-bottom-color: var(--border-color-dark, #333);
    }

    .history-tab[b-u8eqib2r9i] {
        color: var(--text-secondary-dark, #aaa);
    }

    .history-tab:hover[b-u8eqib2r9i] {
        color: var(--text-primary-dark, #fff);
        background-color: var(--hover-bg-dark, rgba(255, 255, 255, 0.05));
    }

    .history-tab.active[b-u8eqib2r9i] {
        color: var(--text-primary-dark, #fff);
    }
}
/* /Components/KeyboardHelpModal.razor.rz.scp.css */
/* KeyboardHelpModal.razor.css */

.keyboard-help-modal[b-txlrz62rrr] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.keyboard-help-modal.visible[b-txlrz62rrr] {
    display: flex;
}

.modal-backdrop[b-txlrz62rrr] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.modal-content[b-txlrz62rrr] {
    position: relative;
    background: var(--bg-secondary, #16213e);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

.modal-header[b-txlrz62rrr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
}

.modal-header h3[b-txlrz62rrr] {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text-primary, #ffffff);
}

.modal-close[b-txlrz62rrr] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted, #888);
    padding: 0;
    line-height: 1;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.modal-close:hover[b-txlrz62rrr] {
    color: var(--text-primary, #ffffff);
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 4px 15px var(--glow-gray),
                0 2px 6px var(--glow-gray-secondary);
}

.modal-body[b-txlrz62rrr] {
    max-height: 60vh;
    overflow-y: auto;
}

.shortcut-section[b-txlrz62rrr] {
    margin-bottom: 1.25rem;
}

.shortcut-section:last-child[b-txlrz62rrr] {
    margin-bottom: 0;
}

.shortcut-section h4[b-txlrz62rrr] {
    font-size: 0.75rem;
    color: var(--text-muted, #888);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.shortcut-item[b-txlrz62rrr] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.shortcut-item span[b-txlrz62rrr] {
    color: var(--text-primary, #ffffff);
    font-size: 0.9rem;
}

kbd[b-txlrz62rrr] {
    display: inline-block;
    min-width: 2.5rem;
    padding: 0.25rem 0.5rem;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.8rem;
    text-align: center;
    background: var(--bg-primary, #1a1a2e);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.2));
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    color: var(--text-primary, #ffffff);
}
