/* /Components/Game/DecisionPanel.razor.rz.scp.css */
/* DecisionPanel Component Styles */

.decision-panel[b-6ruln2w4rp] {
    transition: all 0.3s ease;
}

.decision-panel.locked[b-6ruln2w4rp] {
    background: linear-gradient(135deg, rgba(var(--rz-success-rgb), 0.1) 0%, transparent 100%);
}

.calculation-card[b-6ruln2w4rp] {
    background: var(--rz-base-100);
    border-left: 4px solid var(--rz-info);
}

/* Slider-Styling */
.decision-panel .rz-slider[b-6ruln2w4rp] {
    margin: 1rem 0;
}

.decision-panel .rz-slider .rz-slider-track[b-6ruln2w4rp] {
    background: linear-gradient(90deg, 
        var(--rz-success) 0%, 
        var(--rz-success) 56%, 
        var(--rz-warning) 56%, 
        var(--rz-warning) 80%, 
        var(--rz-danger) 80%);
}

/* Quick-Select Buttons */
.decision-panel .rz-button.rz-button-sm[b-6ruln2w4rp] {
    min-width: 50px;
}
/* /Components/Game/FishStockIndicator.razor.rz.scp.css */
/* FishStockIndicator Component Styles */

.fish-stock-indicator[b-b0rnqgldcc] {
    padding: 1rem;
    background: var(--rz-base-100);
    border-radius: var(--rz-border-radius);
}

.stock-bar-container[b-b0rnqgldcc] {
    position: relative;
    margin: 0.5rem 0;
}

.threshold-marker[b-b0rnqgldcc] {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    z-index: 10;
    opacity: 0.8;
}

.threshold-marker.critical[b-b0rnqgldcc] {
    background-color: var(--rz-danger);
}

.threshold-marker.warning[b-b0rnqgldcc] {
    background-color: var(--rz-warning);
}

.threshold-marker.optimal-min[b-b0rnqgldcc],
.threshold-marker.optimal-max[b-b0rnqgldcc] {
    background-color: var(--rz-success);
    width: 1px;
}

.optimal-zone[b-b0rnqgldcc] {
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: rgba(var(--rz-success-rgb), 0.2);
    z-index: 5;
    border-radius: var(--rz-border-radius);
}
/* /Components/Game/GameEndScreen.razor.rz.scp.css */
/* GameEndScreen Component Styles */

.game-end-screen[b-55atqowlgi] {
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.winner-announcement[b-55atqowlgi] {
    text-align: center;
    animation: bounceIn-b-55atqowlgi 0.8s ease-out;
}

@keyframes bounceIn-b-55atqowlgi {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.winner-card[b-55atqowlgi] {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.2) 0%, 
        rgba(255, 193, 7, 0.1) 100%);
    border: 2px solid gold;
    text-align: center;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
}

/* Rang-Karten */
.rank-gold[b-55atqowlgi] {
    border-left: 4px solid gold;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
}

.rank-silver[b-55atqowlgi] {
    border-left: 4px solid silver;
    background: linear-gradient(90deg, rgba(192, 192, 192, 0.1) 0%, transparent 100%);
}

.rank-bronze[b-55atqowlgi] {
    border-left: 4px solid #cd7f32;
    background: linear-gradient(90deg, rgba(205, 127, 50, 0.1) 0%, transparent 100%);
}

.current-player[b-55atqowlgi] {
    box-shadow: 0 0 10px rgba(var(--rz-primary-rgb), 0.3);
}

/* Responsive */
@media (max-width: 576px) {
    .game-end-screen[b-55atqowlgi] {
        padding: 1rem 0.5rem;
    }
    
    .winner-card[b-55atqowlgi] {
        padding: 1rem;
    }
}
/* /Components/Game/GameHistoryChart.razor.rz.scp.css */
/* GameHistoryChart Component Styles */

.game-history-chart[b-dnryvrlof1] {
    margin: 0;
    width: 100%;
}

.game-history-chart .rz-card[b-dnryvrlof1] {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 400px;
}

/* Header Text - ensure visibility */
.game-history-chart .rz-text[b-dnryvrlof1] {
    color: var(--rz-text-color, #e0e0e0);
}

.game-history-chart h6[b-dnryvrlof1],
.game-history-chart .rz-text-h6[b-dnryvrlof1] {
    color: #ffffff !important;
}

/* Legend Markers */
.legend-marker[b-dnryvrlof1] {
    width: 16px;
    height: 4px;
    border-radius: 2px;
}

.legend-marker.optimal[b-dnryvrlof1] {
    background: rgba(76, 175, 80, 0.3);
    height: 12px;
    border: 1px dashed rgba(76, 175, 80, 0.5);
}

.legend-marker.stock[b-dnryvrlof1] {
    background: #2196F3;
}

.legend-marker.my-catch[b-dnryvrlof1] {
    background: #4CAF50;
    background: repeating-linear-gradient(
        90deg,
        #4CAF50,
        #4CAF50 4px,
        transparent 4px,
        transparent 8px
    );
}

.legend-marker.group-catch[b-dnryvrlof1] {
    background: #FF9800;
}

/* Chart Tooltip */
.chart-tooltip[b-dnryvrlof1] {
    padding: 0.5rem;
    background: rgba(30, 30, 50, 0.95);
    border-radius: var(--rz-border-radius);
    font-size: 0.85rem;
    line-height: 1.4;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Stat Items */
.stat-item[b-dnryvrlof1] {
    text-align: center;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--rz-border-radius);
    min-width: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item .rz-text[b-dnryvrlof1] {
    color: #e0e0e0;
}

.stat-item h6[b-dnryvrlof1],
.stat-item .rz-text-h6[b-dnryvrlof1] {
    color: #ffffff !important;
    margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .game-history-chart .rz-stack[b-dnryvrlof1] {
        flex-direction: column;
    }
    
    .legend-marker + .rz-text[b-dnryvrlof1] {
        font-size: 0.7rem;
    }
}

/* Chart styling overrides */
.game-history-chart .rz-chart[b-dnryvrlof1] {
    --rz-chart-grid-line: rgba(255, 255, 255, 0.1);
}

.game-history-chart .rz-chart-axis-title[b-dnryvrlof1] {
    fill: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

.game-history-chart .rz-chart-axis-tick[b-dnryvrlof1] {
    fill: rgba(255, 255, 255, 0.6);
}

/* Radzen Chart text overrides for dark theme */
.game-history-chart .rz-chart text[b-dnryvrlof1] {
    fill: rgba(255, 255, 255, 0.8);
}

.game-history-chart .rz-chart .rz-legend-text[b-dnryvrlof1] {
    fill: rgba(255, 255, 255, 0.8);
}
/* /Components/Game/GameRoom.razor.rz.scp.css */
/* GameRoom Component Styles */

.game-room[b-hql5xilxsb] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.game-header[b-hql5xilxsb] {
    position: sticky;
    top: 0;
    z-index: 100;
}

.timer-display[b-hql5xilxsb] {
    padding: 0.5rem 1rem;
    border-radius: var(--rz-border-radius);
    background: var(--rz-base-100);
    transition: all 0.3s ease;
}

.timer-display.timer-warning[b-hql5xilxsb] {
    background: var(--rz-warning-lighter);
    animation: pulse-b-hql5xilxsb 1s infinite;
}

.timer-display.timer-critical[b-hql5xilxsb] {
    background: var(--rz-danger-lighter);
    animation: pulse-b-hql5xilxsb 0.5s infinite;
}

@keyframes pulse-b-hql5xilxsb {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}






/* Sections */
.stock-section[b-hql5xilxsb] {
    /* Fish stock indicator */
}

/* Chart und Visualization nebeneinander */
.chart-visualization-section[b-hql5xilxsb] {
    width: 100%;
}

.players-section[b-hql5xilxsb] {
    /* Player cards grid */
}

/* Entscheidungs-Panel und KI-Berater Section */
.decision-advisor-section[b-hql5xilxsb] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.decision-advisor-section .ai-advisor-card[b-hql5xilxsb] {
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--rz-info, #0ea5e9);
}

.chat-section[b-hql5xilxsb] {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .game-room[b-hql5xilxsb] {
        padding: 0.5rem;
        gap: 1rem;
    }
    
    .game-header .rz-stack[b-hql5xilxsb] {
        flex-direction: column;
        text-align: center;
    }
    
    .timer-display[b-hql5xilxsb] {
        width: 100%;
        justify-content: center;
    }
}

/* AI Modal styles sind jetzt in app.css (global) definiert */

/* Round Result Banner */
.round-result-banner[b-hql5xilxsb] {
    animation: slideIn-b-hql5xilxsb 0.3s ease;
}

.round-result-banner .rz-card[b-hql5xilxsb] {
    border-left: 4px solid var(--rz-info);
    transition: all 0.3s ease;
}

.round-result-banner .round-result-success .rz-card[b-hql5xilxsb],
.round-result-banner .rz-card.round-result-success[b-hql5xilxsb] {
    border-left-color: var(--rz-success);
    background: linear-gradient(135deg, rgba(var(--rz-success-rgb), 0.1) 0%, transparent 100%);
}

.round-result-banner .round-result-warning .rz-card[b-hql5xilxsb],
.round-result-banner .rz-card.round-result-warning[b-hql5xilxsb] {
    border-left-color: var(--rz-danger);
    background: linear-gradient(135deg, rgba(var(--rz-danger-rgb), 0.1) 0%, transparent 100%);
}

@keyframes slideIn-b-hql5xilxsb {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* KI-Berater Card */
.ai-advisor-card[b-hql5xilxsb] {
    border-left: 4px solid var(--rz-info, #0ea5e9);
    background: rgba(0, 0, 0, 0.2);
}

.ai-advisor-latest[b-hql5xilxsb] {
    padding: 0.75rem;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--rz-border-radius);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.ai-advisor-history[b-hql5xilxsb] {
    max-height: 150px;
    overflow-y: auto;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--rz-border-radius);
    margin-top: 0.5rem;
}

.ai-advisor-history-item[b-hql5xilxsb] {
    padding: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-advisor-history-item:last-child[b-hql5xilxsb] {
    border-bottom: none;
}

/* Spieler-Chat Section */
.chat-section[b-hql5xilxsb] {
    margin-top: 0.5rem;
}

.chat-section[b-hql5xilxsb]  .rz-fieldset {
    background: var(--rz-base-background-color, #1a1a2e);
}

.chat-section[b-hql5xilxsb]  .rz-fieldset-content {
    background: transparent;
}

.player-chat-messages[b-hql5xilxsb] {
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--rz-border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-message[b-hql5xilxsb] {
    padding: 0.5rem 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--rz-text-color, #e0e0e0);
}

.chat-message:last-child[b-hql5xilxsb] {
    border-bottom: none;
}

.chat-message.own-message[b-hql5xilxsb] {
    background: rgba(var(--rz-primary-rgb, 59, 130, 246), 0.15);
    padding: 0.5rem 0.75rem;
    border-radius: var(--rz-border-radius);
    margin: 0.25rem 0;
    border-left: 3px solid var(--rz-primary, #3b82f6);
}

.chat-message.bot-message[b-hql5xilxsb] {
    background: rgba(var(--rz-info-rgb, 14, 165, 233), 0.12);
    padding: 0.5rem 0.75rem;
    border-radius: var(--rz-border-radius);
    margin: 0.25rem 0;
    border-left: 3px solid var(--rz-info, #0ea5e9);
}

.bot-icon[b-hql5xilxsb] {
    font-size: 0.85em;
    margin-right: 0.25rem;
}

/* Chat Zeitstempel */
.chat-message .rz-color-secondary[b-hql5xilxsb] {
    color: rgba(255, 255, 255, 0.5) !important;
    margin-right: 0.5rem;
}

/* Spieler-Farben im Chat */
[b-hql5xilxsb] .player-color-1 {
    color: #EF5350;
}

[b-hql5xilxsb] .player-color-2 {
    color: #42A5F5;
}

[b-hql5xilxsb] .player-color-3 {
    color: #66BB6A;
}
/* /Components/Game/PlayerCard.razor.rz.scp.css */
/* PlayerCard Component Styles */

.player-game-card[b-7s1ywsmz1q] {
    transition: all 0.3s ease;
    height: 100%;
}

.player-game-card .rz-card[b-7s1ywsmz1q] {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.player-game-card.current-player .rz-card[b-7s1ywsmz1q] {
    border-color: var(--rz-primary);
    box-shadow: 0 0 15px rgba(var(--rz-primary-rgb), 0.3);
}

.player-game-card.decided .rz-card[b-7s1ywsmz1q] {
    background: linear-gradient(135deg, rgba(var(--rz-success-rgb), 0.1) 0%, transparent 100%);
}

.player-emoji[b-7s1ywsmz1q] {
    font-size: 2rem;
    line-height: 1;
}

.player-stats[b-7s1ywsmz1q] {
    padding: 0.5rem;
    background: var(--rz-base-100);
    border-radius: var(--rz-border-radius);
}

/* Mini-Chart f�r Entscheidungshistorie */
.player-history-chart[b-7s1ywsmz1q] {
    padding: 0.5rem;
    background: var(--rz-base-100);
    border-radius: var(--rz-border-radius);
}

.chart-label[b-7s1ywsmz1q] {
    margin-bottom: 0.25rem;
}

.mini-bar-chart[b-7s1ywsmz1q] {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 50px;
    padding: 4px;
    background: var(--rz-base-200);
    border-radius: 4px;
}

.mini-bar-container[b-7s1ywsmz1q] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    cursor: help;
}

.mini-bar[b-7s1ywsmz1q] {
    width: 100%;
    min-height: 4px;
    border-radius: 2px 2px 0 0;
    transition: height 0.3s ease;
    margin-top: auto;
}

.mini-bar-label[b-7s1ywsmz1q] {
    font-size: 0.65rem;
    color: var(--rz-text-secondary-color);
    margin-top: 2px;
    white-space: nowrap;
}

.decision-status[b-7s1ywsmz1q] {
    padding: 0.75rem;
    background: var(--rz-base-200);
    border-radius: var(--rz-border-radius);
    text-align: center;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.last-round-info[b-7s1ywsmz1q] {
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px solid var(--rz-border-color);
}
/* /Components/Game/RoundResultsDisplay.razor.rz.scp.css */
/* RoundResultsDisplay Component Styles */

/* Modal Overlay */
.modal-overlay[b-8p69vlolfh] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
    animation: fadeIn-b-8p69vlolfh 0.2s ease-out;
}

@keyframes fadeIn-b-8p69vlolfh {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Modal Content */
.modal-content[b-8p69vlolfh] {
    background-color: var(--rz-base-background-color, #1e1e2e);
    border-radius: var(--rz-border-radius, 8px);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideIn-b-8p69vlolfh 0.3s ease-out;
}

@keyframes slideIn-b-8p69vlolfh {
    from { 
        opacity: 0;
        transform: translateY(-20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header[b-8p69vlolfh] {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--rz-border-color, #333);
    background: linear-gradient(135deg, var(--rz-primary-lighter, #1a5f7a) 0%, transparent 100%);
}

.modal-body[b-8p69vlolfh] {
    padding: 1.5rem;
}

/* Card Styles */
.stock-change-card[b-8p69vlolfh] {
    background: var(--rz-base-100, #2a2a3e);
    text-align: center;
}

.current-player-result[b-8p69vlolfh] {
    border-left: 4px solid var(--rz-primary, #1a5f7a);
    background: linear-gradient(90deg, rgba(var(--rz-primary-rgb), 0.1) 0%, transparent 100%);
}

.summary-card[b-8p69vlolfh] {
    background: var(--rz-base-200, #252538);
    border-top: 2px solid var(--rz-border-color, #333);
}

/* Scrollbar styling */
.modal-content[b-8p69vlolfh]::-webkit-scrollbar {
    width: 8px;
}

.modal-content[b-8p69vlolfh]::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content[b-8p69vlolfh]::-webkit-scrollbar-thumb {
    background-color: var(--rz-border-color, #333);
    border-radius: 4px;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-3hs3hsriud] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-3hs3hsriud] {
    flex: 1;
}

.sidebar[b-3hs3hsriud] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-3hs3hsriud] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-3hs3hsriud]  a, .top-row[b-3hs3hsriud]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-3hs3hsriud]  a:hover, .top-row[b-3hs3hsriud]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-3hs3hsriud]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-3hs3hsriud] {
        justify-content: space-between;
    }

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

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

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

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

    .top-row.auth[b-3hs3hsriud]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-3hs3hsriud], article[b-3hs3hsriud] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-3hs3hsriud] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-3hs3hsriud] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-8yrxnb9q9s] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-8yrxnb9q9s] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-8yrxnb9q9s] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

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

.bi[b-8yrxnb9q9s] {
    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-8yrxnb9q9s] {
    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-8yrxnb9q9s] {
    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-8yrxnb9q9s] {
    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-8yrxnb9q9s] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

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

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

    .nav-item[b-8yrxnb9q9s]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-8yrxnb9q9s]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-8yrxnb9q9s]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-8yrxnb9q9s] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-8yrxnb9q9s] {
    display: block;
}

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

    .nav-scrollable[b-8yrxnb9q9s] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-clxetiwbrn],
.components-reconnect-repeated-attempt-visible[b-clxetiwbrn],
.components-reconnect-failed-visible[b-clxetiwbrn],
.components-pause-visible[b-clxetiwbrn],
.components-resume-failed-visible[b-clxetiwbrn],
.components-rejoining-animation[b-clxetiwbrn] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-clxetiwbrn],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-clxetiwbrn],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-clxetiwbrn],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-clxetiwbrn],
#components-reconnect-modal.components-reconnect-retrying[b-clxetiwbrn],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-clxetiwbrn],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-clxetiwbrn],
#components-reconnect-modal.components-reconnect-failed[b-clxetiwbrn],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-clxetiwbrn] {
    display: block;
}


#components-reconnect-modal[b-clxetiwbrn] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-clxetiwbrn 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-clxetiwbrn 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-clxetiwbrn 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-clxetiwbrn]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-clxetiwbrn 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-clxetiwbrn {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-clxetiwbrn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-clxetiwbrn {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-clxetiwbrn] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-clxetiwbrn] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-clxetiwbrn] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-clxetiwbrn] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-clxetiwbrn] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-clxetiwbrn] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-clxetiwbrn] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-clxetiwbrn 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-clxetiwbrn] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-clxetiwbrn {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Lobby/GameLobby.razor.rz.scp.css */
/* GameLobby Component Styles */

.player-card[b-qj0nge3epn] {
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.player-card:hover[b-qj0nge3epn] {
    transform: translateX(4px);
}

.player-card.current-player[b-qj0nge3epn] {
    border-left-color: var(--rz-primary);
    background: linear-gradient(90deg, rgba(var(--rz-primary-rgb), 0.1) 0%, transparent 100%);
}

.chat-messages[b-qj0nge3epn] {
    background-color: var(--rz-base-100);
    scrollbar-width: thin;
}

.chat-messages[b-qj0nge3epn]::-webkit-scrollbar {
    width: 6px;
}

.chat-messages[b-qj0nge3epn]::-webkit-scrollbar-thumb {
    background-color: var(--rz-border-color);
    border-radius: 3px;
}
