/* _content/foxhole-void-bot/src/frontend/Pages/App.razor.rz.scp.css */
.not-found-container[b-3e6ymx13sv] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #1b1b1b;
    color: #e0e0d1;
    text-align: center;
   
}

    .not-found-container h1[b-3e6ymx13sv] {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .not-found-container p[b-3e6ymx13sv] {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

.go-home-button[b-3e6ymx13sv] {
    display: inline-block;
    background-color: #7a5c3c;
    color: #e0e0d1;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

    .go-home-button:hover[b-3e6ymx13sv] {
        background-color: #4a5c4d;
    }
/* _content/foxhole-void-bot/src/frontend/Pages/Components/Arty/BottomPanel/BottomPanel.razor.rz.scp.css */
.bottom-panel[b-hn60vnrt2p] {
    position: absolute;
    top: 90%;
    left: 25%;
    width: 50%;
    height: -webkit-fill-available;
    background-color: #2a2a2a;
    border-left: 2px solid white;
    z-index: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.map-name[b-hn60vnrt2p] {
    margin: 0;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    color: #7a5c3c;
    font-weight: bold;
    font-size: medium;
}
.wind-table[b-hn60vnrt2p] {
    border-collapse: collapse; /* ensures borders merge nicely */
    text-align: center;
    border: 0.1rem solid #7a5c3c; /* outer table border */
    height:contain;
   
}

    .wind-table thead[b-hn60vnrt2p] {
        color: green;
        border-bottom: 0.15rem solid #7a5c3c; /* outer table border */
    }
    .wind-table td[b-hn60vnrt2p] {
        border: 0.1rem solid #7a5c3c; /* outer table border */
        color: #7a5c3c;
    }
    .wind-table thead.notviable[b-hn60vnrt2p] {
        color: red;
    }
/* _content/foxhole-void-bot/src/frontend/Pages/Components/Arty/CircleMarker/CircleComponent.razor.rz.scp.css */
.circle[b-ya0ngclswp] {
    position: absolute;
    pointer-events: none;
    z-index: 10;
    transform: translate(-50%, -50%);
}
/* _content/foxhole-void-bot/src/frontend/Pages/Components/Arty/Compass/Compass.razor.rz.scp.css */
/* container (block-level): rem-based */
.wind-dial[b-phpupo2sc4] {
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.7);
    display: block;
    z-index: 10;
    overflow: visible;
}

/* point (absolute inside container) */
.compass-point[b-phpupo2sc4] {
    position: absolute;
    border-radius: 50%;
    background-color: white;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    border: 0.125rem solid #222;
    box-sizing: border-box;
}

    /* font-size: clamp using rems (block-level font sizing) */
    .compass-point .compass-label[b-phpupo2sc4] {
        /* inline element: use em if you want relative scaling; but the parent is block so we use rem in clamp */
        font-size: clamp(0.75rem, 1.8vw, 1.0rem);
        line-height: 1em;
        font-weight: 600;
        text-align: center;
        /* stack two-letter labels vertically (keeps glyphs upright) */
        text-orientation: upright;
        -webkit-text-orientation: upright;
    }

    /* active point */
    .compass-point.active[b-phpupo2sc4] {
        background-color: lime;
    }

/* SVG overlay doesn't block pointer events and is positioned with top/left in markup */
.compass-svg[b-phpupo2sc4] {
    display: block;
    z-index:-1;
}

/* focus/keyboard */
.compass-point:focus[b-phpupo2sc4] {
    outline: 0.125rem solid #66f;
    outline-offset: 0.125rem;
}
/* _content/foxhole-void-bot/src/frontend/Pages/Components/Arty/GunSelect/GunButton/GunButton.razor.rz.scp.css */


.image-button[b-f65asuulqg] {
    width: 100%;
    height: 100%;
    border: none;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: left;
}

.image-button-img[b-f65asuulqg] {
    width: 100%; /* responsive width */
    height: 100%; /* responsive height */
    object-fit: contain; /* keep aspect ratio inside box */
    object-position: center; /* center the image inside */
    display: block;
    pointer-events: none;
}

.image-button-container[b-f65asuulqg] {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 20%;
    width: 100%;
}

    .image-button:hover[b-f65asuulqg] {
        background-color: #4a5c4d !important;
        color: #2a2a2a;
    }

.image-button:hover p[b-f65asuulqg] {
    background-color: #4a5c4d !important;
    color: #2a2a2a;
}

.image-button-container p[b-f65asuulqg] {
    color: #7a5c3c;
    font-weight: bold;
    font-size: medium;
}

.image-button.selected[b-f65asuulqg] {
    background-color: #7a5c3c;
}

    .image-button.selected p[b-f65asuulqg] {
        color: #2a2a2a;
    }

.image-container[b-f65asuulqg] {
    width: 5em;
    height: 5em;
    object-fit: fill;
    margin-right: 1em;
    margin-left: 1em;
}
/* _content/foxhole-void-bot/src/frontend/Pages/Components/Arty/GunSelect/GunFactionSelector/GunFactionSelector.razor.rz.scp.css */
.gun-selector[b-70zzrb8lwz] {
    width: 12.5%;
    height: 50%;
    position: absolute;
    top: 50%;
    left: 87.5%;
    border-left: 2px solid white;
    background-color: #2a2a2a;
}

.selector-controls[b-70zzrb8lwz] {
    display: flex;
    height: 10%
}

    .selector-controls button[b-70zzrb8lwz] {
        width: 50%;
        border: none;
        color: #7a5c3c;
        font-weight: bold;
        font-size: medium;
        background-color: #2a2a2a;
    }

        .selector-controls button:hover[b-70zzrb8lwz] {
            color: #2a2a2a !important;
            background-color: #4a5c4d !important;
        }


.active[b-70zzrb8lwz] {
    color: #2a2a2a !important;
    font-weight: bold;
    font-size: medium;
    background-color: #7a5c3c !important;
}

.selector-view[b-70zzrb8lwz] {
    height: 90%;
}
/* _content/foxhole-void-bot/src/frontend/Pages/Components/Arty/GunSelect/GunSelector/GunSelector.razor.rz.scp.css */
.gun-selector[b-pl23xk8mvw] {
    height: 100%;
    width: 100%;
    object-fit: contain;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: auto;
    scrollbar-width: none;
}
/* _content/foxhole-void-bot/src/frontend/Pages/Components/Arty/InfoPanel/InfoPanel.razor.rz.scp.css */
.info-panel[b-jeu7jrv11d] {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 75%;
    width: 25%;
    height: calc(50% - 2px);
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    background-color: #2a2a2a;
}

.none-selected[b-jeu7jrv11d] {
    width: 100%;
    font-size: medium;
    text-align: center;
    border: 2px solid #7a5c3c;
    color: #7a5c3c;
}
.info-table[b-jeu7jrv11d] {
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    text-align: center;
    border: 2px solid #7a5c3c;
    color: #7a5c3c;
    font-weight: bold;
    border-spacing: 0px;
}

    .info-table thead[b-jeu7jrv11d] {
        border: 2px solid #7a5c3c;
    }
    .info-table td[b-jeu7jrv11d] {
        border-spacing: 0px;
        border: 2px solid #7a5c3c;
    }
.empty-field[b-jeu7jrv11d] {
    background-color: #7a5c3c;
}
.row-divider[b-jeu7jrv11d] {
    border-top: 4px solid #7a5c3c;
    background-color: #7a5c3c;
    height: 2%;
}
/* _content/foxhole-void-bot/src/frontend/Pages/Components/Arty/MapMarker/MapMarker.razor.rz.scp.css */
.map-marker[b-crz5kxpas1] {
    position: absolute;

    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5); /* subtle glow */
    pointer-events: none;
    z-index: 10;
    transform: translate(-50%, -50%);
}
/* _content/foxhole-void-bot/src/frontend/Pages/Components/Arty/MapSelect/MapSelect.razor.rz.scp.css */
.map-selector[b-br1ynsclhi] {
    width: 12.5%;
    height: 100%;
    max-height: 100%;
    background-color: #2a2a2a;
    border-left: 2px solid white;
    z-index: 0;
    top: 0;
    left: 12.5%;
    position: absolute;
}

.map-sidebar[b-br1ynsclhi] {
    height: 100%;
}
.button-container[b-br1ynsclhi] {
    height: 94.5%;
    overflow: auto;
    scrollbar-width: none;
}
.search-bar[b-br1ynsclhi] {
    flex: 0 0 auto; /* Prevent shrinking or growing */
    width: 100%;
    height: 5%;
    padding-top: 2.5%;
    padding-bottom: 2.5%;
    box-sizing: border-box;
    overflow: hidden;
}

.button-list[b-br1ynsclhi] {
    display: flex;
    flex-direction: column;
}

.map-button[b-br1ynsclhi] {
    height: 5vh;
    background-color: #2a2a2a;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s ease;
    color: #7a5c3c;
    font-weight:bold;
    font-size:medium;
}

    .map-button:hover[b-br1ynsclhi] {
        background-color: #4a5c4d; /* Slightly lighter on hover */
    }
/* _content/foxhole-void-bot/src/frontend/Pages/Components/Arty/MapView/MapView.razor.rz.scp.css */
.map-view[b-a9fgnk88d9] {
    width: 50%;
    height: 90%;
    position: absolute;
    top: 0;
    left: 25%;
    overflow: hidden;
    pointer-events: auto;
}

    .map-view div img[b-a9fgnk88d9] {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
        pointer-events: none;
        pointer-events: auto;
    }
.map-transform[b-a9fgnk88d9] {
    transform-origin: 0 0;
    transition: transform 0.05s ease-out;
    pointer-events: auto;
}
/* _content/foxhole-void-bot/src/frontend/Pages/Components/Arty/WindSelection/Button/WindButton.razor.rz.scp.css */


.image-button[b-v4houlze6r] {
    width: 100%;
    height: 100%;
    border: none;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: left;
}

.image-button-img[b-v4houlze6r] {
    width: 100%; /* responsive width */
    height: 100%; /* responsive height */
    object-fit: contain; /* keep aspect ratio inside box */
    object-position: center; /* center the image inside */
    display: block;
    pointer-events:none;    
}

.image-button-container[b-v4houlze6r] {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 20%;
    width:100%;
}
.image-button:hover[b-v4houlze6r] {
    background-color: #4a5c4d;
    color: #2a2a2a;
}
    .image-button:hover p[b-v4houlze6r] {
        background-color: #4a5c4d;
        color: #2a2a2a;
    }
    .image-button-container p[b-v4houlze6r] {
        color: #7a5c3c;
        font-weight: bold;
        font-size: medium;
    }

.image-button.selected[b-v4houlze6r] {
    background-color: #7a5c3c;
}

    .image-button.selected p[b-v4houlze6r] {
        color: #2a2a2a;
    }

.image-container[b-v4houlze6r] {
    width: 5em;
    height: 5em;
    object-fit: fill;
    margin-right: 1em;
    margin-left: 1em;
}
/* _content/foxhole-void-bot/src/frontend/Pages/Components/Arty/WindSelection/WindFlagSelector/WindFlagSelector.razor.rz.scp.css */
.wind-flags[b-6cj75bdull] {
    height: 100%;
    width: 100%;
    object-fit: contain;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
}
/* _content/foxhole-void-bot/src/frontend/Pages/Components/Arty/WindSelection/WindSelector/WindSelector.razor.rz.scp.css */
.wind-selector[b-pr1h18k9ry] {
    width: 12.5%;
    height: 50%;
    position: absolute;
    top: 50%;
    left: 75%;
    border-left: 2px solid white;
    background-color: #2a2a2a;
}
.selector-controls[b-pr1h18k9ry] {
    display: flex;
    height: 10%
}
    .selector-controls button[b-pr1h18k9ry] {
        width: 50%;
        border: none;
        color: #7a5c3c;
        font-weight: bold;
        font-size: medium;
        background-color: #2a2a2a;
    }
        .selector-controls button:hover[b-pr1h18k9ry] {
            color: #2a2a2a !important;
            background-color: #4a5c4d !important;
        }


.active[b-pr1h18k9ry] {
    color: #2a2a2a !important;
    font-weight: bold;
    font-size: medium;
    background-color: #7a5c3c !important;
}
.selector-view[b-pr1h18k9ry] {
    height: 90%;
}
/* _content/foxhole-void-bot/src/frontend/Pages/Components/Arty/WindSelection/WindSockSelector/WindSockSelector.razor.rz.scp.css */
.wind-socks[b-rcvhge6b73] {
    height: 100%;
    width: 100%;
    object-fit: contain;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
}
/* _content/foxhole-void-bot/src/frontend/Pages/Components/Banner/Banner.razor.rz.scp.css */
.glass-panel[b-jkkwhatn9p] {
    position: relative;
    margin-left: 35%;
    margin-top: 10rem;
    background-color: rgba(42, 42, 42, 0.5); /* semi-transparent */
    border-radius: 1rem;
    padding: 1rem;
    backdrop-filter: blur(8px); /* glassy blur */
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    text-align: center;
}


.glass-title[b-jkkwhatn9p] {
    font-size: 4rem;
    color: #4a5c4d; /* colors.highlight */
    margin-bottom: 1.5rem;
}

.glass-description[b-jkkwhatn9p] {
    font-size: 1.25rem;
    color: #e0e0d1; /* colors.text */
}
/* _content/foxhole-void-bot/src/frontend/Pages/Components/SideBar/SideBar.razor.rz.scp.css */
.sidebar[b-70m0c41mbr] {
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    width: 12.5%;
    height: 100%;
    max-height: 100%;
    background-color: #2a2a2a;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.sidebar-header[b-70m0c41mbr] {
    margin-top: 1rem;
    text-align: center;
}

.sidebar-header h2[b-70m0c41mbr] {
    text-align: center;
    font-size: 1.5rem;
    color: #7a5c3c;
}

.sidebar-header hr[b-70m0c41mbr] {
    border: none;
    border-top: 2px solid #ccc;
}
.nav-button[b-70m0c41mbr] {
    list-style: none;
    text-align: center;
    padding: 0.75rem;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #2a2a2a; /* New background color */
    color: #e0e0d1; /* Light text for contrast */
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    text-decoration: none;
}

    .nav-button:hover[b-70m0c41mbr] {
        transform: translateY(-2px);
        background-color: #4a5c4d; /* Slightly lighter on hover */
    }

    .nav-button:enabled[b-70m0c41mbr] {
        transform: scale(0.98);
        box-shadow: none;
        background-color: #7a5c3c; /* Slightly darker on click */
    }

    /* Make NavLink inside behave like plain text */
    .nav-button a[b-70m0c41mbr],
    .nav-button .nav-link[b-70m0c41mbr] {
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
        color: inherit;
        text-align: center; /* Center text inside link */
    }
.sidebar nav ul[b-70m0c41mbr] {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-block-end:0;
}
/* _content/foxhole-void-bot/src/frontend/Pages/Components/VideoCarousel/VideoCarousel.razor.rz.scp.css */
#videoBackgroundCarousel[b-b3ib7k1anw] {
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    position: absolute;
    top: 0;
    left: 12.5%; /* Offset from the left */
    width: 87.5%; /* Remaining width */
    height: 100vh; /* Full viewport height */
    z-index: -1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1b1b1b;
}

.carousel-item[b-b3ib7k1anw] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .carousel-item.active[b-b3ib7k1anw] {
        transition: opacity 0.8s ease-in-out;
        opacity: 1;
        display: flex;
    }

    .carousel-item video[b-b3ib7k1anw] {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain; /* Ensures best aspect ratio fit */
        pointer-events: auto;
    }
/* _content/foxhole-void-bot/src/frontend/Pages/MainLayout.razor.rz.scp.css */
.body[b-67najeggh7] {
    padding: 0;
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    min-height: 100%;
    max-height: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    width:100%;
    height: 100%;
    overflow: hidden;
}

header[b-67najeggh7], footer[b-67najeggh7] {
    background-color: #222;
    color: white;
    text-align: center;
}
