/* /Components/Audio/VoiceCommandPanel.razor.rz.scp.css */
.voice-command-panel[b-om7rv5gd7l] {
    background: rgba(0, 30, 0, 0.9);
    border: 1px solid #004400;
    border-radius: 4px;
    padding: 10px;
    font-family: 'Courier New', monospace;
}

.voice-status[b-om7rv5gd7l] {
    display: flex;
    gap: 10px;
    align-items: center;
}

.status-warning[b-om7rv5gd7l] {
    color: #ffaa00;
    font-size: 12px;
    padding: 6px;
}

.mic-button[b-om7rv5gd7l],
.tts-button[b-om7rv5gd7l],
.permission-button[b-om7rv5gd7l] {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 60, 0, 0.8);
    border: 1px solid #00aa00;
    border-radius: 4px;
    padding: 8px 12px;
    color: #00cc00;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Courier New', monospace;
    font-size: 13px;
}

.mic-button:hover[b-om7rv5gd7l],
.tts-button:hover[b-om7rv5gd7l],
.permission-button:hover[b-om7rv5gd7l] {
    background: rgba(0, 100, 0, 0.9);
    border-color: #00ff00;
    color: #00ff00;
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

.mic-button.listening[b-om7rv5gd7l] {
    background: rgba(80, 0, 0, 0.8);
    border-color: #ff4444;
    color: #ff8888;
    animation: pulse-b-om7rv5gd7l 1.5s infinite;
}

@keyframes pulse-b-om7rv5gd7l {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
    }
}

.tts-button.active[b-om7rv5gd7l] {
    background: rgba(0, 100, 0, 0.9);
    border-color: #00ff00;
    color: #00ff00;
}

.mic-icon[b-om7rv5gd7l] {
    font-size: 16px;
}

.transcript-display[b-om7rv5gd7l] {
    margin-top: 8px;
    padding: 8px;
    background: rgba(0, 50, 0, 0.6);
    border: 1px solid #00aa00;
    border-radius: 3px;
    font-size: 12px;
}

.transcript-label[b-om7rv5gd7l] {
    color: #00aa00;
    font-weight: bold;
    margin-right: 8px;
}

.transcript-text[b-om7rv5gd7l] {
    color: #00ff00;
}

.error-display[b-om7rv5gd7l] {
    margin-top: 8px;
    padding: 8px;
    background: rgba(60, 20, 0, 0.8);
    border: 1px solid #ff6666;
    border-radius: 3px;
    color: #ff8888;
    font-size: 12px;
}
/* /Components/Controls/CommandInput.razor.rz.scp.css */
.command-input-container[b-n4glnzezaq] {
    display: flex;
    flex-direction: column;
    background: rgba(0, 20, 0, 0.9);
    border: 1px solid #004400;
    border-radius: 4px;
    padding: 10px;
    font-family: 'Courier New', monospace;
}

.command-history[b-n4glnzezaq] {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 10px;
    padding: 5px;
    background: rgba(0, 10, 0, 0.5);
    border-radius: 3px;
}

.history-entry[b-n4glnzezaq] {
    padding: 4px 6px;
    margin: 2px 0;
    font-size: 12px;
    border-left: 3px solid transparent;
}

.history-entry.valid[b-n4glnzezaq] {
    border-left-color: #00aa00;
    color: #00cc00;
}

.history-entry.invalid[b-n4glnzezaq] {
    border-left-color: #aa0000;
    color: #cc5555;
}

.timestamp[b-n4glnzezaq] {
    color: #666666;
    margin-right: 8px;
}

.callsign[b-n4glnzezaq] {
    font-weight: bold;
    margin-right: 8px;
    color: #00ff00;
}

.command[b-n4glnzezaq] {
    color: #00cc00;
}

.error[b-n4glnzezaq] {
    margin-left: 10px;
    color: #ff6666;
    font-style: italic;
}

.input-area[b-n4glnzezaq] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.selected-callsign[b-n4glnzezaq] {
    color: #00ff00;
    font-weight: bold;
    font-size: 14px;
}

.command-input[b-n4glnzezaq] {
    flex: 1;
    background: rgba(0, 40, 0, 0.8);
    border: 1px solid #00aa00;
    border-radius: 3px;
    padding: 8px 12px;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    outline: none;
}

.command-input:focus[b-n4glnzezaq] {
    border-color: #00ff00;
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

.command-input[b-n4glnzezaq]::placeholder {
    color: #006600;
}

.suggestions[b-n4glnzezaq] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 40, 0, 0.95);
    border: 1px solid #00aa00;
    border-top: none;
    border-radius: 0 0 3px 3px;
    margin-top: -3px;
    z-index: 1000;
}

.suggestion[b-n4glnzezaq] {
    padding: 6px 12px;
    cursor: pointer;
    color: #00cc00;
    font-size: 12px;
    border-bottom: 1px solid rgba(0, 170, 0, 0.3);
}

.suggestion:last-child[b-n4glnzezaq] {
    border-bottom: none;
}

.suggestion:hover[b-n4glnzezaq] {
    background: rgba(0, 80, 0, 0.8);
    color: #00ff00;
}

.quick-commands[b-n4glnzezaq] {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.quick-commands button[b-n4glnzezaq] {
    background: rgba(0, 60, 0, 0.8);
    border: 1px solid #00aa00;
    border-radius: 3px;
    padding: 6px 10px;
    color: #00cc00;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-commands button:hover[b-n4glnzezaq] {
    background: rgba(0, 100, 0, 0.9);
    border-color: #00ff00;
    color: #00ff00;
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

.quick-commands button:active[b-n4glnzezaq] {
    transform: scale(0.95);
}
/* /Components/Radar/RadarDisplay.razor.rz.scp.css */
.radar-container[b-bpo3zxif3m] {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #001100;
    border: 2px solid #004400;
    border-radius: 8px;
    overflow: hidden;
}

canvas[b-bpo3zxif3m] {
    display: block;
    cursor: crosshair;
    image-rendering: crisp-edges;
}

.aircraft-info-panel[b-bpo3zxif3m] {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 40, 0, 0.9);
    border: 1px solid #00aa00;
    border-radius: 4px;
    padding: 12px;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    min-width: 200px;
}

.aircraft-info-panel h3[b-bpo3zxif3m] {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: bold;
    color: #00ff00;
    border-bottom: 1px solid #00aa00;
    padding-bottom: 5px;
}

.info-row[b-bpo3zxif3m] {
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
    padding: 2px 0;
}

.info-row span:first-child[b-bpo3zxif3m] {
    color: #00cc00;
    font-weight: bold;
}

.info-row span:last-child[b-bpo3zxif3m] {
    color: #00ff00;
    text-align: right;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-kuj2h3ieue] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-kuj2h3ieue] {
    flex: 1;
}

.sidebar[b-kuj2h3ieue] {
    background: linear-gradient(180deg, #001100 0%, #002200 100%);
    border-right: 1px solid #00cc00;
}

.top-row[b-kuj2h3ieue] {
    background-color: #001100;
    border-bottom: 1px solid #00cc00;
    justify-content: space-between;
    height: 3.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    overflow-x: auto;
}

    .top-row[b-kuj2h3ieue]  a, .top-row[b-kuj2h3ieue]  .btn-link {
        white-space: nowrap;
        margin-left: 0;
        text-decoration: none;
        color: #00cc00;
    }

    .top-row[b-kuj2h3ieue]  a:hover, .top-row[b-kuj2h3ieue]  .btn-link:hover {
        text-decoration: underline;
        color: #00ff00;
    }

    .top-row .toolbar-auth[b-kuj2h3ieue] {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        min-width: max-content;
    }

    .top-row .auth-btn[b-kuj2h3ieue] {
        border: 1px solid #00aa00;
        border-radius: 4px;
        padding: 0.2rem 0.6rem;
        color: #00dd00;
        background: #002200;
    }

    .top-row .auth-btn:hover[b-kuj2h3ieue] {
        background: #003300;
        text-decoration: none;
    }

    .top-row .user-pill[b-kuj2h3ieue] {
        border: 1px solid #008800;
        border-radius: 999px;
        padding: 0.2rem 0.7rem;
        color: #00ff88;
        background: #001a00;
        font-size: 0.9rem;
        max-width: 16rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .top-row .about-link[b-kuj2h3ieue] {
        flex: 0 0 auto;
    }

.login-error-panel[b-kuj2h3ieue] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 1rem;
    background: #2a0000;
    color: #ffb3b3;
    border-bottom: 1px solid #aa3333;
}

@media (max-width: 640.98px) {
    .top-row[b-kuj2h3ieue] {
        height: auto;
        min-height: 3.5rem;
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }

    .top-row[b-kuj2h3ieue]  a, .top-row[b-kuj2h3ieue]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-kuj2h3ieue] {
        flex-direction: row;
    }

    .sidebar[b-kuj2h3ieue] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-kuj2h3ieue] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-kuj2h3ieue], article[b-kuj2h3ieue] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-nngwbtb9tf] {
    background-color: rgba(0, 204, 0, 0.2);
}

.top-row[b-nngwbtb9tf] {
    min-height: 3.5rem;
    background-color: #001100;
    border-bottom: 1px solid #00cc00;
}

.navbar-brand[b-nngwbtb9tf] {
    font-size: 1.1rem;
    color: #00ff00 !important;
}

.navbar-brand[b-nngwbtb9tf] {
    font-size: 1.1rem;
}

.bi[b-nngwbtb9tf] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-nngwbtb9tf] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-nngwbtb9tf] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-nngwbtb9tf] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-nngwbtb9tf] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-nngwbtb9tf] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-nngwbtb9tf] {
        padding-bottom: 1rem;
    }

    .nav-item[b-nngwbtb9tf]  a {
        color: #00cc00;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        background-color: #001100;
        transition: all 0.2s ease;
    }

.nav-item[b-nngwbtb9tf]  a.active {
    background-color: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border-left: 3px solid #00ff00;
}

.nav-item[b-nngwbtb9tf]  a:hover {
    background-color: rgba(0, 204, 0, 0.1);
    color: #00ff00;
}

@media (min-width: 641px) {
    .navbar-toggler[b-nngwbtb9tf] {
        display: none;
    }

    .collapse[b-nngwbtb9tf] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-nngwbtb9tf] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
        background-color: #001100;
    }
}
/* /Pages/Simulation.razor.rz.scp.css */
.simulation-container[b-ya0dd4vlvu] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background: #000800;
    color: #00ff00;
    font-family: 'Courier New', monospace;
}

.top-bar[b-ya0dd4vlvu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0, 40, 0, 0.8);
    border-bottom: 2px solid #004400;
}

.airport-info h2[b-ya0dd4vlvu] {
    margin: 0;
    color: #00ff00;
    font-size: 20px;
}

.scenario-info[b-ya0dd4vlvu] {
    color: #00aa00;
    font-size: 12px;
}

.score-display[b-ya0dd4vlvu] {
    display: flex;
    gap: 20px;
}

.score-item[b-ya0dd4vlvu] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.score-item .label[b-ya0dd4vlvu] {
    font-size: 11px;
    color: #00aa00;
}

.score-item .value[b-ya0dd4vlvu] {
    font-size: 18px;
    font-weight: bold;
    color: #00ff00;
}

.controls[b-ya0dd4vlvu] {
    display: flex;
    gap: 10px;
    align-items: center;
}

.control-btn[b-ya0dd4vlvu] {
    background: rgba(0, 80, 0, 0.8);
    border: 1px solid #00aa00;
    border-radius: 4px;
    padding: 8px 16px;
    color: #00cc00;
    cursor: pointer;
    transition: all 0.2s;
}

.control-btn:hover[b-ya0dd4vlvu] {
    background: rgba(0, 120, 0, 0.9);
    border-color: #00ff00;
    color: #00ff00;
}

.control-btn.active[b-ya0dd4vlvu] {
    background: rgba(0, 120, 0, 0.9);
    border-color: #00ff00;
}

.speed-select[b-ya0dd4vlvu] {
    background: rgba(0, 40, 0, 0.8);
    border: 1px solid #00aa00;
    border-radius: 4px;
    padding: 8px 12px;
    color: #00cc00;
    cursor: pointer;
}

.main-content[b-ya0dd4vlvu] {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.radar-section[b-ya0dd4vlvu] {
    flex: 1;
    padding: 10px;
    position: relative;
}

.loading-overlay[b-ya0dd4vlvu] {
    position: absolute;
    inset: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 8, 0, 0.78);
    color: #66ff66;
    font-size: 1.2rem;
    border: 1px solid #006600;
    border-radius: 4px;
    z-index: 10;
}

.control-section[b-ya0dd4vlvu] {
    width: 350px;
    padding: 10px;
    background: rgba(0, 20, 0, 0.5);
    border-left: 2px solid #004400;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
}

.happiness-indicator[b-ya0dd4vlvu] {
    background: rgba(0, 30, 0, 0.8);
    border: 1px solid #004400;
    border-radius: 4px;
    padding: 10px;
}

.happiness-indicator h4[b-ya0dd4vlvu] {
    margin: 0 0 8px 0;
    color: #00aa00;
    font-size: 13px;
}

.happiness-bar[b-ya0dd4vlvu] {
    height: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #004400;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.happiness-fill[b-ya0dd4vlvu] {
    height: 100%;
    background: linear-gradient(90deg, #ff4444 0%, #ffaa00 50%, #00ff00 100%);
    transition: width 0.3s ease;
}

.happiness-value[b-ya0dd4vlvu] {
    font-size: 14px;
    font-weight: bold;
    color: #00ff00;
}

.happiness-details[b-ya0dd4vlvu] {
    margin-top: 10px;
    font-size: 11px;
}

.detail-row[b-ya0dd4vlvu] {
    display: flex;
    justify-content: space-between;
    margin: 4px 0;
    color: #00cc00;
}

.aircraft-list[b-ya0dd4vlvu] {
    background: rgba(0, 30, 0, 0.8);
    border: 1px solid #004400;
    border-radius: 4px;
    padding: 10px;
}

.aircraft-list h4[b-ya0dd4vlvu] {
    margin: 0 0 8px 0;
    color: #00aa00;
    font-size: 13px;
}

.aircraft-item[b-ya0dd4vlvu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 8px;
    margin: 2px 0;
    background: rgba(0, 20, 0, 0.5);
    border: 1px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 12px;
}

.aircraft-item:hover[b-ya0dd4vlvu] {
    background: rgba(0, 50, 0, 0.8);
    border-color: #00aa00;
}

.aircraft-item.selected[b-ya0dd4vlvu] {
    background: rgba(0, 80, 0, 0.9);
    border-color: #00ff00;
}

.ac-callsign[b-ya0dd4vlvu] {
    font-weight: bold;
    color: #00ff00;
    flex: 1;
}

.ac-alt[b-ya0dd4vlvu],
.ac-spd[b-ya0dd4vlvu] {
    color: #00cc00;
    margin-left: 8px;
}

.scenario-modal-backdrop[b-ya0dd4vlvu] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1000;
}

.scenario-modal[b-ya0dd4vlvu] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(920px, 95vw);
    max-height: 85vh;
    overflow: hidden;
    background: rgba(0, 24, 0, 0.98);
    border: 2px solid #006600;
    border-radius: 8px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.scenario-modal-header[b-ya0dd4vlvu] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid #004400;
}

.scenario-modal-header h3[b-ya0dd4vlvu] {
    margin: 0;
    color: #00ff00;
}

.scenario-modal-body[b-ya0dd4vlvu] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 12px;
    min-height: 320px;
}

.scenario-list-pane[b-ya0dd4vlvu],
.scenario-details-pane[b-ya0dd4vlvu] {
    border: 1px solid #004400;
    border-radius: 6px;
    padding: 10px;
    overflow: auto;
    background: rgba(0, 12, 0, 0.7);
}

.scenario-list-item[b-ya0dd4vlvu] {
    width: 100%;
    text-align: left;
    background: rgba(0, 30, 0, 0.8);
    border: 1px solid #005500;
    border-radius: 4px;
    padding: 8px;
    margin-bottom: 6px;
    color: #00dd00;
    cursor: pointer;
}

.scenario-list-item.selected[b-ya0dd4vlvu] {
    border-color: #00ff00;
    background: rgba(0, 60, 0, 0.9);
}

.scenario-list-item .name[b-ya0dd4vlvu] {
    display: block;
    font-weight: bold;
}

.scenario-list-item .meta[b-ya0dd4vlvu] {
    display: block;
    color: #00aa00;
    font-size: 12px;
    margin-top: 2px;
}

.scenario-modal-actions[b-ya0dd4vlvu] {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .scenario-modal-body[b-ya0dd4vlvu] {
        grid-template-columns: 1fr;
    }
}
