/* /Layout/MainLayout.razor.rz.scp.css */
.smite-app-container[b-hsyufsh8yp] {
    min-height: 100vh;
    @supports (min-height: 100dvh) {
        min-height: 100dvh;
    }
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: var(--light-brown);
}

.smite-header[b-hsyufsh8yp] {
    background-color: var(--dark-green);
    color: var(--light-brown);
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.smite-menu-btn[b-hsyufsh8yp] {
    background: transparent;
    border: none;
    color: var(--light-brown);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smite-header-title[b-hsyufsh8yp] {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.smite-header-logo[b-hsyufsh8yp] {
    height: 38px;
    width: auto;
}

.smite-header-actions[b-hsyufsh8yp] {
    min-width: 40px;
    display: flex;
    justify-content: flex-end;
}

.smite-header-action-btn[b-hsyufsh8yp] {
    background: transparent;
    border: 1px solid var(--light-brown);
    color: var(--light-brown);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.smite-header-action-btn:hover[b-hsyufsh8yp] {
    background-color: rgba(255, 255, 255, 0.2);
}

.smite-flyout-overlay[b-hsyufsh8yp] {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease-in-out;
}

.smite-flyout-overlay.open[b-hsyufsh8yp] {
    opacity: 1;
    pointer-events: auto;
}

.smite-flyout-drawer[b-hsyufsh8yp] {
    width: 280px;
    max-width: 80vw;
    height: 100%;
    background-color: var(--dark-green);
    background-image: var(--grass-bg);
    background-size: cover;
    transform: translateX(-100%);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.5);
}

.smite-flyout-overlay.open .smite-flyout-drawer[b-hsyufsh8yp] {
    transform: translateX(0);
}

.flyout-header[b-hsyufsh8yp] {
    padding: 24px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.flyout-logo[b-hsyufsh8yp] {
    max-width: 180px;
    height: auto;
}

.flyout-nav-list[b-hsyufsh8yp] {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.smite-menu-action-btn[b-hsyufsh8yp] {
    background-color: var(--light-brown);
    color: var(--mid-green);
    font-weight: bold;
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.1s, background-color 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
}

.smite-menu-action-btn:hover[b-hsyufsh8yp] {
    background-color: #fff6e8;
    transform: translateY(-1px);
}

.smite-menu-action-btn:active[b-hsyufsh8yp] {
    transform: translateY(1px);
}

.flyout-divider[b-hsyufsh8yp] {
    height: 1px;
    background-color: var(--light-brown);
    opacity: 0.6;
    margin: 8px 0;
}

.btn-restart[b-hsyufsh8yp] {
    color: var(--dark-brown);
    background-color: #ffd590;
}

.btn-abandon[b-hsyufsh8yp] {
    color: #fff;
    background-color: var(--danger-red);
}

.smite-main-content[b-hsyufsh8yp] {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    min-height: calc(100vh - 56px);
    @supports (min-height: calc(100dvh - 56px)) {
        min-height: calc(100dvh - 56px);
    }
}
