/* /Components/BoardComponent.razor.rz.scp.css */
.board-grid[b-o4ivjjt052] {
    display: inline-flex;
    flex-direction: column;
    gap: 0;
    padding: 6px;
    background: #8f7aad;
    border-radius: 8px;
    box-shadow: inset 0 2px 8px rgba(45, 20, 80, 0.25);
}

.board-row[b-o4ivjjt052] {
    display: flex;
    flex-shrink: 0;
}

[b-o4ivjjt052] .board-cell {
    box-sizing: border-box !important;
    flex-shrink: 0;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 2px !important;
    transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

[b-o4ivjjt052] .board-cell-slot {
    border: 1px solid rgba(106, 90, 138, 0.2) !important;
    background: #fffef8 !important;
}

[b-o4ivjjt052] .board-cell-origin {
    background: linear-gradient(145deg, #ffe9a8 0%, #ffd54f 100%) !important;
    border: 3px solid #e65100 !important;
    box-shadow: 0 0 0 2px rgba(230, 81, 0, 0.25), inset 0 0 12px rgba(255, 193, 7, 0.35);
}

[b-o4ivjjt052] .board-cell-occupied {
    border: 1px solid rgba(91, 45, 142, 0.25) !important;
    background: #fff !important;
}

[b-o4ivjjt052] .board-cell-dragging,
[b-o4ivjjt052] .board-cell.mud-border-info {
    background: #c8f5e8 !important;
    border: 3px solid #1b8a78 !important;
    box-shadow: 0 0 10px rgba(42, 157, 143, 0.45);
}

[b-o4ivjjt052] .board-cell.mud-border-error {
    background: #ffe8e8 !important;
    border: 2px solid #c62828 !important;
}

.board-cell-dot[b-o4ivjjt052] {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #c4b5d9;
    opacity: 0.85;
}

.board-origin-mark[b-o4ivjjt052] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    color: #e65100;
    pointer-events: none;
    line-height: 1;
}

.board-origin-label[b-o4ivjjt052] {
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Dark mode */
.dark .board-grid[b-o4ivjjt052] {
    background: #4A3870;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
}

.dark[b-o4ivjjt052]  .board-cell-slot {
    border-color: rgba(155, 111, 212, 0.2) !important;
    background: #2A1E40 !important;
}

.dark[b-o4ivjjt052]  .board-cell-occupied {
    border-color: rgba(155, 111, 212, 0.25) !important;
    background: #332650 !important;
}

.dark .board-cell-dot[b-o4ivjjt052] {
    background: #6B5A8A;
}
/* /Components/BoardViewport.razor.rz.scp.css */
.board-panel[b-iofwirb7jv] {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    background: linear-gradient(145deg, #f0e8ff 0%, #e4d4f8 100%);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    box-shadow: 0 6px 24px rgba(91, 45, 142, 0.18);
}

.board-header[b-iofwirb7jv] {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.board-header-title[b-iofwirb7jv] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.board-header-icon[b-iofwirb7jv] {
    color: #5b2d8e;
    font-size: 1.75rem !important;
    margin-top: 0.1rem;
}

.board-title[b-iofwirb7jv] {
    font-weight: 700 !important;
    color: #3d1f6e;
    line-height: 1.2 !important;
}

.board-subtitle[b-iofwirb7jv] {
    color: #5c5470;
    display: block;
    margin-top: 0.15rem;
}

.board-toolbar[b-iofwirb7jv] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.15rem 0.35rem;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 8px;
    border: 1px solid #d4c8e8;
}

.board-drop-hint[b-iofwirb7jv] {
    margin-bottom: 0.5rem;
    border-radius: 8px !important;
}

.board-zoom-label[b-iofwirb7jv] {
    min-width: 2.5rem;
    text-align: center;
    color: #5c5470;
    font-weight: 600;
}

.board-viewport[b-iofwirb7jv] {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    border-radius: 10px;
    border: 2px solid #5b2d8e;
    background-color: #b8a5d4;
    background-image:
        linear-gradient(rgba(91, 45, 142, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(91, 45, 142, 0.07) 1px, transparent 1px);
    background-size: 16px 16px;
    cursor: grab;
    scrollbar-width: thin;
    scrollbar-color: #5b2d8e #e8e0f4;
}

.board-viewport.is-panning[b-iofwirb7jv] {
    cursor: grabbing;
    user-select: none;
}

.board-surface[b-iofwirb7jv] {
    display: inline-block;
    padding: 1rem;
    min-width: min-content;
}

/* Dark mode */
.dark .board-panel[b-iofwirb7jv] {
    background: linear-gradient(145deg, #2A1E40 0%, #332650 100%);
    border-color: #9B6FD4;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.dark .board-header-icon[b-iofwirb7jv] {
    color: #9B6FD4;
}

.dark .board-title[b-iofwirb7jv] {
    color: #C4AAEE;
}

.dark .board-subtitle[b-iofwirb7jv] {
    color: #A99BBF;
}

.dark .board-toolbar[b-iofwirb7jv] {
    background: rgba(38, 29, 56, 0.65);
    border-color: #3D2E5C;
}

.dark .board-zoom-label[b-iofwirb7jv] {
    color: #A99BBF;
}

.dark .board-viewport[b-iofwirb7jv] {
    border-color: #9B6FD4;
    background-color: #3D2E5C;
    background-image:
        linear-gradient(rgba(155, 111, 212, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(155, 111, 212, 0.07) 1px, transparent 1px);
    scrollbar-color: #9B6FD4 #261D38;
}
/* /Components/GamePlayersPanel.razor.rz.scp.css */
.game-players-trigger[b-h3t0luw8g1] {
    text-transform: none;
    font-weight: 600;
    border-radius: 10px;
}

.game-players-dropdown[b-h3t0luw8g1] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
    min-width: 220px;
}
/* /Components/PlayerDetailComponent.razor.rz.scp.css */
.player-detail-card[b-5oux3w29vz] {
    width: 100%;
    background: #fff !important;
}

.player-detail-turn[b-5oux3w29vz] {
    border: 2px solid var(--mud-palette-primary) !important;
    box-shadow: 0 2px 12px rgba(91, 45, 142, 0.15);
}

.player-detail-content[b-5oux3w29vz] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.75rem !important;
}

.player-detail-info[b-5oux3w29vz] {
    flex: 1;
    min-width: 0;
}

.player-detail-name[b-5oux3w29vz] {
    font-weight: 600;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-detail-score[b-5oux3w29vz] {
    color: #5c5470;
    font-weight: 600;
}

.player-detail-turn-chip[b-5oux3w29vz] {
    flex-shrink: 0;
}

/* Dark mode */
.dark .player-detail-card[b-5oux3w29vz] {
    background: #261D38 !important;
}

.dark .player-detail-score[b-5oux3w29vz] {
    color: #A99BBF;
}
/* /Components/RackComponent.razor.rz.scp.css */
.rack-bar[b-v55i3tyeuq] {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #1e1e2e 0%, #11111b 100%);
    border-radius: 14px;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(137, 180, 250, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.rack-label[b-v55i3tyeuq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding-right: 0.6rem;
    border-right: 1px solid rgba(137, 180, 250, 0.1);
    flex-shrink: 0;
}

.rack-label-icon[b-v55i3tyeuq] {
    color: #cba6f7;
    font-size: 1.5rem !important;
}

.rack-label-text[b-v55i3tyeuq] {
    font-size: 0.55rem !important;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(205, 214, 244, 0.45);
    text-transform: uppercase;
}

.rack-slots[b-v55i3tyeuq] {
    display: flex;
    flex: 1 1 0;
    gap: 0.4rem;
    justify-content: center;
    align-items: center;
    flex-direction: row !important;
}

.rack-slot-wrapper[b-v55i3tyeuq] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

[b-v55i3tyeuq] .mud-drop-zone {
    display: flex !important;
    flex-direction: row !important;
    flex: 0 0 64px !important;
    width: 64px !important;
    height: 64px !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
}

.rack-slot[b-v55i3tyeuq] {
    display: flex !important;
    flex-direction: row !important;
    flex: 0 0 64px !important;
    width: 64px !important;
    height: 64px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid rgba(137, 180, 250, 0.12) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: all 0.15s ease;
}

.rack-slot:hover[b-v55i3tyeuq] {
    border-color: rgba(203, 166, 247, 0.4) !important;
    background: rgba(203, 166, 247, 0.06) !important;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.25), 0 0 8px rgba(203, 166, 247, 0.12);
}

.rack-slot-dragging[b-v55i3tyeuq] {
    border-color: #cba6f7 !important;
    background: rgba(203, 166, 247, 0.1) !important;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.25), 0 0 16px rgba(203, 166, 247, 0.2);
}

.rack-slot-can-drop[b-v55i3tyeuq] {
    position: relative;
}

.rack-slot-can-drop[b-v55i3tyeuq]::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 25%;
    width: 1px;
    background: rgba(203, 166, 247, 0.25);
    pointer-events: none;
    z-index: 1;
}

.rack-slot-can-drop[b-v55i3tyeuq]::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 75%;
    width: 1px;
    background: rgba(203, 166, 247, 0.25);
    pointer-events: none;
    z-index: 1;
}

.rack-slot-num[b-v55i3tyeuq] {
    font-size: 0.5rem;
    font-weight: 600;
    color: rgba(205, 214, 244, 0.25);
    margin-top: 2px;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 640px) {
    .rack-slot[b-v55i3tyeuq] {
        flex: 0 0 52px !important;
        height: 52px !important;
    }
}
/* /Pages/GamePage.razor.rz.scp.css */
.game-layout[b-p0cxetloyk] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0.5rem;
    gap: 0.5rem;
    overflow: hidden;
}

.game-content[b-p0cxetloyk] {
    display: flex;
    flex: 1;
    min-height: 0;
    gap: 0.5rem;
}

.game-main[b-p0cxetloyk] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    gap: 0.5rem;
}

.game-board-area[b-p0cxetloyk] {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.game-rack-area[b-p0cxetloyk] {
    flex-shrink: 0;
}

.game-sidebar[b-p0cxetloyk] {
    display: flex;
    flex-direction: column;
    width: 200px;
    flex-shrink: 0;
    gap: 0.5rem;
}

.game-pioche[b-p0cxetloyk],
.game-actions[b-p0cxetloyk] {
    background: #fff;
    border: 1px solid #e2daf0;
    border-radius: 10px;
    padding: 0.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.sidebar-section-header[b-p0cxetloyk] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid #e8e0f4;
    color: #5b2d8e;
}

.sidebar-section-title[b-p0cxetloyk] {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #3d1f6e;
}

.game-action-btn[b-p0cxetloyk] {
    border-radius: 8px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    font-size: 0.8rem !important;
}

.game-action-primary[b-p0cxetloyk] {
    box-shadow: 0 2px 8px rgba(91, 45, 142, 0.25);
}

.game-bottom-bar[b-p0cxetloyk] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: #fff;
    border: 1px solid #e2daf0;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(91, 45, 142, 0.06);
    flex-shrink: 0;
}

.game-players-scores[b-p0cxetloyk] {
    display: flex;
    flex: 1;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.player-score-item[b-p0cxetloyk] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    transition: background 0.15s;
}

.player-score-active[b-p0cxetloyk] {
    background: rgba(91, 45, 142, 0.08);
    font-weight: 600;
}

.player-dot[b-p0cxetloyk] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c4b5d9;
    flex-shrink: 0;
}

.player-dot-active[b-p0cxetloyk] {
    background: #5b2d8e;
    box-shadow: 0 0 6px rgba(91, 45, 142, 0.5);
}

.player-name[b-p0cxetloyk] {
    color: #3d1f6e;
    font-weight: 500;
}

.player-points[b-p0cxetloyk] {
    color: #5c5470;
    font-weight: 600;
}

.game-historique-btn[b-p0cxetloyk] {
    flex-shrink: 0;
    text-transform: none !important;
    font-weight: 600 !important;
    color: #5b2d8e !important;
}

/* Drop container */
[b-p0cxetloyk] .game-drop-container {
    border: none !important;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

/* Board cell overrides (deep inside BoardComponent > BoardViewport) */
.game-drop-container[b-p0cxetloyk]  .board-cell {
    box-sizing: border-box !important;
    flex-shrink: 0;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 2px !important;
    transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.game-drop-container[b-p0cxetloyk]  .board-cell-slot {
    border: 1px solid rgba(106, 90, 138, 0.2) !important;
    background: #fffef8 !important;
}

.game-drop-container[b-p0cxetloyk]  .board-cell-origin {
    background: linear-gradient(145deg, #ffe9a8 0%, #ffd54f 100%) !important;
    border: 3px solid #e65100 !important;
    box-shadow: 0 0 0 2px rgba(230, 81, 0, 0.25), inset 0 0 12px rgba(255, 193, 7, 0.35);
}

.game-drop-container[b-p0cxetloyk]  .board-cell-occupied {
    border: 1px solid rgba(91, 45, 142, 0.25) !important;
    background: #fff !important;
}

.game-drop-container[b-p0cxetloyk]  .board-cell-dragging,
.game-drop-container[b-p0cxetloyk]  .board-cell.mud-border-info {
    background: #c8f5e8 !important;
    border: 3px solid #1b8a78 !important;
    box-shadow: 0 0 10px rgba(42, 157, 143, 0.45);
}

.game-drop-container[b-p0cxetloyk]  .board-cell.mud-border-error {
    background: #ffe8e8 !important;
    border: 2px solid #c62828 !important;
}

.board-cell-dot[b-p0cxetloyk] {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #c4b5d9;
    opacity: 0.85;
}

.board-origin-mark[b-p0cxetloyk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    color: #e65100;
    pointer-events: none;
    line-height: 1;
}

.board-origin-label[b-p0cxetloyk] {
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Bag (pioche in sidebar) */
[b-p0cxetloyk] .bag-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[b-p0cxetloyk] .bag-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    padding-right: 0.5rem;
    border-right: 1px solid rgba(42, 157, 143, 0.15);
}

[b-p0cxetloyk] .bag-label-icon {
    color: #5eead4;
    font-size: 1.2rem !important;
}

[b-p0cxetloyk] .bag-label-text {
    font-size: 0.5rem !important;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(94, 234, 212, 0.45);
    text-transform: uppercase;
}

[b-p0cxetloyk] .bag-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    justify-content: center;
}

[b-p0cxetloyk] .bag-slot {
    border: 1.5px dashed rgba(94, 234, 212, 0.25) !important;
    border-radius: 6px !important;
    background: rgba(255, 255, 255, 0.03) !important;
}

[b-p0cxetloyk] .bag-slot-dragging {
    border-color: #5eead4 !important;
    background: rgba(94, 234, 212, 0.12) !important;
}

/* Tiles */
[b-p0cxetloyk] .game-tile {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 2px;
}

[b-p0cxetloyk] .game-tile-image {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 900px) {
    .game-content[b-p0cxetloyk] {
        flex-direction: column;
    }

    .game-sidebar[b-p0cxetloyk] {
        width: 100%;
        flex-direction: row;
        flex-shrink: 0;
    }

    .game-pioche[b-p0cxetloyk],
    .game-actions[b-p0cxetloyk] {
        flex: 1;
    }

    .game-bottom-bar[b-p0cxetloyk] {
        flex-direction: column;
        align-items: stretch;
    }

    .game-players-scores[b-p0cxetloyk] {
        justify-content: center;
    }

    .game-historique-btn[b-p0cxetloyk] {
        align-self: center;
    }
}

@media (max-width: 640px) {
    .game-layout[b-p0cxetloyk] {
        padding: 0.25rem;
    }
}

/* Dark mode */
.dark .game-sidebar .game-pioche[b-p0cxetloyk],
.dark .game-sidebar .game-actions[b-p0cxetloyk] {
    background: #261D38;
    border-color: #3D2E5C;
}

.dark .sidebar-section-header[b-p0cxetloyk] {
    border-bottom-color: #3D2E5C;
}

.dark .sidebar-section-title[b-p0cxetloyk] {
    color: #C4AAEE;
}

.dark .board-panel[b-p0cxetloyk] {
    background: linear-gradient(145deg, #2A1E40 0%, #332650 100%);
    border-color: #9B6FD4;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.dark .board-header-icon[b-p0cxetloyk] {
    color: #9B6FD4;
}

.dark .board-title[b-p0cxetloyk] {
    color: #C4AAEE;
}

.dark .board-subtitle[b-p0cxetloyk] {
    color: #A99BBF;
}

.dark .board-toolbar[b-p0cxetloyk] {
    background: rgba(38, 29, 56, 0.65);
    border-color: #3D2E5C;
}

.dark .board-zoom-label[b-p0cxetloyk] {
    color: #A99BBF;
}

.dark .board-viewport[b-p0cxetloyk] {
    border-color: #9B6FD4;
    background-color: #3D2E5C;
    background-image:
        linear-gradient(rgba(155, 111, 212, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(155, 111, 212, 0.07) 1px, transparent 1px);
    scrollbar-color: #9B6FD4 #261D38;
}

.dark .board-grid[b-p0cxetloyk] {
    background: #4A3870;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
}

.dark .game-drop-container[b-p0cxetloyk]  .board-cell-slot {
    border-color: rgba(155, 111, 212, 0.2) !important;
    background: #2A1E40 !important;
}

.dark .game-drop-container[b-p0cxetloyk]  .board-cell-occupied {
    border-color: rgba(155, 111, 212, 0.25) !important;
    background: #332650 !important;
}

.dark .board-cell-dot[b-p0cxetloyk] {
    background: #6B5A8A;
}

.dark .game-bottom-bar[b-p0cxetloyk] {
    background: #261D38;
    border-color: #3D2E5C;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.dark .player-name[b-p0cxetloyk] {
    color: #C4AAEE;
}

.dark .player-points[b-p0cxetloyk] {
    color: #A99BBF;
}

.dark .player-dot[b-p0cxetloyk] {
    background: #6B5A8A;
}

.dark .player-dot-active[b-p0cxetloyk] {
    background: #9B6FD4;
    box-shadow: 0 0 6px rgba(155, 111, 212, 0.5);
}
/* /Pages/InstantGamePage.razor.rz.scp.css */
html[b-tjl22cy6o7], body[b-tjl22cy6o7] {
    height: 100%;
}


.waitingPlayer[b-tjl22cy6o7] {
    font-style: italic;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.app-bar[b-df78bcpqc9] {
    background: linear-gradient(90deg, #3D1F6E 0%, #5B2D8E 60%, #2A9D8F 100%) !important;
}

.app-brand-btn[b-df78bcpqc9] {
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff !important;
    text-transform: none;
    letter-spacing: 0.02em;
}

.app-tour-indicator[b-df78bcpqc9] {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    margin-right: 0.5rem;
}

.app-drawer[b-df78bcpqc9] {
    background: #faf7ff;
    border-right: 1px solid #e8e0f4;
}

.app-main-content[b-df78bcpqc9] {
    background: var(--qwirkle-bg);
    padding-top: 0 !important;
    overflow: hidden !important;
}

.dark[b-df78bcpqc9] {
    background-color: #1A1228;
}

.dark .app-drawer[b-df78bcpqc9] {
    background: #1A1228;
    border-right-color: #3D2E5C;
}
