body {
    min-height: 100vh;
}

html {
    scrollbar-gutter: stable;
    max-width: 100%;
    overflow-x: hidden;
}

html,
body,
#root {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;

}

main {
    flex: 1;
    padding-bottom: 50px;
    /* rozpycha się, a footer spada na dół */
}

.App {
    width: 100vw;
    min-height: 100vh;
}

.slider1Mainbox {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.photosBox {
    width: 100%;
    height: 100%;
    background-size: 120% auto;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomAnim 8s ease-in-out infinite;
    /* custom properties for direction */
    --dx-speed: calc(var(--dx) * 10px);
    --dy-speed: calc(var(--dy) * 10px);
}

@keyframes zoomAnim {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(var(--dx-speed), var(--dy-speed));
    }
}

/* Pauza/Play button */
.sliderPauseBtn {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgb(0, 0, 0);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 14px;
    border: 2px solid white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: center;
    border-radius: 999px;
}

.menuMainBar {
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    min-height: 50px;
    font-size: 24px;
    font-weight: 400;
}

.menuElement {

    padding: 0px 10px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;

}

.menuElement.home:hover {
    background-image: url('./icons/home.svg');
}

.menuElement.aktualności:hover {
    background-image: url('./icons/news.svg');
}

.menuElement.kimjesteśmy:hover {
    background-image: url('./icons/aboutus.svg');
}

.menuElement.roczniki:hover {
    background-image: url('./icons/roczniki.svg');
}

.menuElement.kontakt:hover {
    background-image: url('./icons/contact.svg');
}

.menuElement:hover {
    background-color: rgb(244, 244, 244);

    /* wstawiamy SVG konturowe jako tło */

    background-repeat: no-repeat;
    background-position: center center;
    /* zwiększamy rozmiar, żeby tylko fragment ikony był widoczny */
    background-size: 150%;


}



.HomePageMainbox {
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.descMainBox {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    width: 60%;
    margin-top: 40px;
    margin-bottom: 20px;
    box-shadow: 10px 10px 10px rgba(218, 218, 218, 0.6);
    background-color: rgb(248, 248, 248);


}


.descBorder {

    width: 4px;
    background: #58d400;
    background: linear-gradient(0deg, rgba(88, 212, 0, 1) 25%, rgba(0, 184, 177, 1) 84%);
}

.descValueBox {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.descTitle {

    width: 100%;
    font-size: 35px;
    color: #474747;
    font-weight: 300;
    font-size: 35px;
    text-align: left;
    margin: auto;
    padding: 10px 0px;
    border-bottom: 1px solid black;
    margin-bottom: 10px;
    color: #474747;
    padding-top: 50px;
}

.descValue {
    margin: auto;
    width: 95%;
    text-align: left;
    font-size: 20px;
    font-weight: 300;
    color: rgb(83, 83, 83);

    padding-bottom: 50px;


}

.descValue.c {
    font-size: 12px;
    padding: 0;
    margin: none;
}

.descValue.c .descTitle {
    padding: 0px;
}

@media screen and (max-width: 800px) {
    .descMainBox {
        width: 90%;
    }

    .descValue {
        font-size: 18px;

    }

}



.nextEventMainBox {
    width: 250px;
    height: 250px;
    background-color: rgb(255, 255, 255);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgb(175, 175, 175);
    flex-shrink: 0;
    box-sizing: border-box;
}


.nextEventGradient {
    height: 50%;
    width: 100%;
    background: linear-gradient(0deg, #b600a4 25%, #5e0078 84%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.nextEventValue {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    padding: 0px 5px;
}

.nextEventTexts {

    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 10px;
}

.nextEventTitle {
    font-size: 16px;
    font-weight: 600;
    text-align: left;

}

.nextEventTerm {
    font-size: 14px;
    font-weight: 300;
    color: #858585;

}

.nextEventButton {
    width: 70%;
    height: 30px;
    display: flex;
    flex-direction: row;
    gap: 2px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-family: 'Lucida Sans' sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #5e0078;
    background-color: #c7fffb;
    margin-right: auto;
    box-shadow: 5px 5px 5px rgb(237, 237, 237);
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.nextEventButton:hover {
    box-shadow: -5px -5px 5px rgb(237, 237, 237);
    background-color: #b0fffa;
}

.elementsSliderWrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sliderNav {
    width: 40px;
    height: 40px;
    background-color: white;
    border: 1px solid rgb(174, 174, 174);
    border-radius: 5555px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.sliderNav:hover {
    background-color: rgb(222, 222, 222);

}

.elementsSliderMainbox {
    width: calc(260px * 5 + 20px * 2);
    max-width: 70vw;
    /* widocznych 3 kart */
    overflow: hidden;
}

.elementsSliderTrack {
    display: flex;
    justify-content: flex-start;
    /* od lewej */
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.5s ease;
    background-color: rgba(255, 0, 0, 0);
}

.elementsSliderTrack>* {
    flex: 0 0 250px;
    /* sztywne 250px */
    box-sizing: border-box;
}

.aktualnosciMainbox {
    /* 1. Kontener FLEX z łamaniem wierszy */
    display: flex;
    /* blokowy, nie „inline-flex” */
    flex-wrap: wrap;
    gap: 16px;

    /* 2. Wiersze przyklejone do lewej wewnątrz kontenera */
    justify-content: flex-start;

    /* 3. „Intrinsic sizing” – szerokość = zawartość, nie więcej niż viewport */
    width: 95%;


    /* 4. Wyśrodkowanie całego kontenera względem okna */
    margin: auto;
    /* auto po bokach centrowało tylko elementy blokowe */
}

.aktualnoscMainbox {
    /* wymusza 300px szerokości */
    width: 300px;
    max-width: 90vw;
    height: 300px;
    border-radius: 30px;
    background-color: white;
    border: 1px solid lightgray;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
}

.aktualnoscGradient {
    height: 40%;
    background: linear-gradient(0deg, rgb(0, 187, 212) 25%, rgb(125, 170, 255) 84%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aktualnoscText {
    padding: 5px 10px;
}

.aktualnoscData {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-left: 10px;
    font-size: 12px;
    color: rgb(101, 101, 101);

}

.aktualnoscTitle {

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-left: 10px;
    font-size: 18px;
    color: rgb(0, 0, 0);
    text-align: left;
    display: -webkit-box;
    /* kontener flex-box w pionie */
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    /* maksymalnie 5 wierszy */
    overflow: hidden;
    /* ukrywa nadmiar tekstu */
    text-overflow: ellipsis;
    /* wielokropek na końcu */
    white-space: normal;
}


.aktualnoscContent {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-left: 10px;
    font-size: 14px;
    color: rgb(68, 68, 68);
    text-align: left;
    display: -webkit-box;
    /* kontener flex-box w pionie */
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* maksymalnie 5 wierszy */
    overflow: hidden;
    /* ukrywa nadmiar tekstu */
    text-overflow: ellipsis;
    /* wielokropek na końcu */
    white-space: normal;
}

.aktualnoscText .nextEventButton {
    margin-top: 10px;
    margin-left: 10px;
}

.sectionTitle {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 35px;
    color: #474747;
    font-weight: 300;
    font-size: 35px;
    width: 75%;
}

.gallerySectionTitle {

    font-size: 35px;
    font-weight: 200;
    width: 100%;
    ;
    text-align: left;
}

.commentsSectionTitle {
    font-size: 25px;
    font-weight: 200;
    width: 90%;
    text-align: left;
    margin: auto;
    padding: 10px 0px;
    border-bottom: 1px solid lightgray;
    color: rgb(72, 72, 72);
}

/* ---------- kontener główny ---------- */
.aktualnosciFullBox {
    background-color: white;
    width: 80%;
    border: 1px solid lightgray;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    max-width: 1400px;
    box-shadow: 4px 4px 4px lightgray;
}

/* Gradient w nagłówku */
.fullBoxGradient {
    height: 100px;
    background: linear-gradient(0deg, rgb(0, 187, 212) 25%, rgb(125, 170, 255) 84%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sekcja treści */
.fullBoxContent {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 70%;
    padding: 30px;
    text-align: left;
}

.fullBoxDate {
    font-size: 15px;
    font-weight: 300;
    color: #474747;
    margin-bottom: 4px;
}

.fullBoxTitle {
    font-size: 35px;
    font-weight: 500;
    color: #000;
    margin-bottom: 12px;
}

.fullBoxText {
    font-size: 20px;
    font-weight: 300;
    color: #404040;
    line-height: 1.4;
}

/* --------- kontrola długości tekstu --------- */
.fullBoxText.collapsed {
    /* maks. 10 linii (WebKit/Blink) */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
    overflow: hidden;
    /* Fallback dla Firefox / stare Safari */
    max-height: calc(1.4em * 10);
}

.fullBoxText.expanded {
    /* brak ograniczeń */
}

.toggleBtn {
    margin: auto;
    margin-top: 12px;
    padding: 6px 16px;
    font-size: 14px;
    border: 1px solid #585858;
    background-color: #ffffff;
    color: #717171;
    font-weight: 200;
    border-radius: 4999px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.toggleBtn:hover {
    opacity: 0.8;
}

.sectionTitle.b {
    margin: auto;
    margin-top: 20px;
}

.aktualnosciPageMainbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;

}

.aboutUsMainbox {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}


.rocznikMainbox {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 80%;
    max-width: 800px;
    min-height: 300px;
    border: 1px solid lightgray;
    background-color: white;
    border-radius: 50px;
    overflow: hidden;
    padding-bottom: 50px;
    box-shadow: 4px 4px 4px lightgray;
}

.rocznikTop {
    height: 200px;
    width: 100%;
    position: relative;

}

.rocznikGradient {
    background: linear-gradient(0deg, rgb(59, 108, 255) 25%, rgb(163, 59, 255) 84%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    font-weight: 300;
    text-shadow: rgb(170, 238, 255) 1px 0 10px;


}

.rocznikTrenerAvatar {
    height: 200px;
    width: 200px;
    border-radius: 55555px;
    overflow: hidden;
    position: absolute;
    /* względem .rocznikTop */
    bottom: -50px;
    /* połowa wysokości avatara = 100 px / 2 */
    left: 100px;
    border: 5px solid white;
}

.rocznikContent {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin: auto;
    margin-top: 50px;
    padding-left: 6px;
}

.rocznikContent.b {
    margin-top: 10px;
    width: 100%;
    justify-content: center;

}

.wypelniacz {
    width: 0%;
    height: 35px;
}


.rocznikAttr {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 30px;
    background-color: #f7f7f7;
    border-radius: 15px;
    padding: 10px;
    gap: 5px;
    min-width: 150px;
    border-left: 4px solid rgb(226, 226, 226);

}

.rocznikAttrIcon {
    height: 100%;
}

.rocznikAttrBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

}

.rocznikAttrTitle {
    font-size: 12px;
    font-weight: 400;
    color: rgb(107, 107, 107);


}

.rocznikAttrText {
    font-size: 16px;
    font-weight: 400;
    color: rgb(0, 0, 0);

}



.upcomingCalendarMainbox {
    width: 80%;
    padding-bottom: 40px;
    border-radius: 20px;
    background-color: #f7f7f7;
    border-left: 8px solid rgb(226, 226, 226);
}

.calendarTitle {
    width: 100%;
    text-align: left;
    padding: 0px 50px;
    font-size: 25px;
    font-weight: 200;
}

.calendarTitle span {
    font-size: 16px;
}

.calendarDays {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    max-width: 80%;
    margin: auto;
    background-color: white;
    border-radius: 10px;
    height: 40px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 25px;
    position: relative;
}

.dayPopup {
    background: white;
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 13px;
    min-width: 140px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.dayPopup p {
    margin: 2px 0;
}


.calDay {
    min-width: 30px;
    /* ta wartość = cell w useEffect */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 30px;

    padding: 5px;
    border-radius: 55555px;
    transition: 0.3s ease-in-out;
}

.dayNumber {
    font-weight: 600;
    font-size: 18px;
}

.dayName {
    font-weight: 400;
    font-size: 12px;
    color: rgb(93, 93, 93);
}

.calDay.current {
    border-radius: 9999px;
    border: 1px solid rgb(202, 202, 202);
}

.calDay.training {
    cursor: pointer;
    background-color: rgb(223, 255, 214);

}

.calDay.game {
    cursor: pointer;
    background-color: rgb(214, 255, 255);
}

.calDay.game:hover {
    background-color: rgb(172, 255, 255);
}

.calDay.training:hover {
    background-color: rgb(181, 253, 161);
}

.whatHovered {
    min-height: 20px;
    width: 90%;
    text-align: left;
    margin: auto;
    margin-top: 10px;
    transition: 0.3s ease-in-out;
    font-weight: 300;

}

.legendaDott {
    width: 12px;
    height: 12px;
    background-color: black;
    border-radius: 4444px;
    background-color: rgb(90, 244, 255);
}

.legendaDott.b {
    background-color: rgb(126, 255, 90);
}

.legenda {
    margin: auto;
    margin-top: 15px;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    gap: 5px;
    height: 20px;
    width: 90%;
    font-weight: 200;
    font-size: 14px;

}

.miejscaTreningowBox {
    width: 80%;
    margin-top: 10px;
    min-height: 100px;
    background-color: #f7f7f7;
    border-left: 10px solid rgb(226, 226, 226);
    border-radius: 20px;
    padding-bottom: 40px;


}

.miejscaTreningowGroup {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.miejsceTreningow {
    height: 100px;
    width: 90%;
    background-color: white;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.miejsceTreningowPhoto {
    width: 30%;
    height: 90%;
}

.miejsceTreningowPhoto img {
    width: 100%;
    height: 100%;
}

.miejsceTreningowInfo {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.miejsceTreningowNazwa,
.miejsceTreningowAdres {
    width: 90%;
    text-align: left;

}

.miejsceTreningowNazwa {
    font-size: 20px;
    font-weight: 400;
}

.miejsceTreningowAdres {
    font-size: 14px;
    font-weight: 300;
}

.wynikiPrzejscie {
    background: #212121;
    background: linear-gradient(0deg, rgba(33, 33, 33, 1) 36%, rgba(255, 255, 255, 1) 100%);
    width: 100%;
    height: 50px;
    margin-top: 20px;
}

.wynikiMainbox {
    background-color: #212121;
    width: 100%;
    min-height: 500px;
}

.rocznikSelect {
    width: 80%;
    min-height: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    gap: 10px;
    margin-top: 30px;
}

.rocznikSelectElement {
    height: 25px;
    padding: 0 5px;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 555px;
    border: 1px solid lightblue;
    padding: 2px 5px;
}

.rocznikSelectElement:hover,
.rocznikSelectElement.chosen {
    border: 1px solid rgb(107, 107, 107);
    background-color: rgb(248, 248, 248);
}

.rocznikSelectElementIcon {
    height: 70%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.rocznikSelectElementText {
    font-weight: 300;
    height: 30%;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.rocznikiPageMainbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;

}


.rocznikWybor {
    width: 100%;
    background-color: white;

    min-height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex-wrap: wrap;
    padding: 5px;
    margin-top: 2px;

}

.rocznikWyborElement {
    color: black;
    text-decoration: none;

    padding: 10px;
    font-size: 16px;
    font-weight: 300;
    transition: 0.3s ease-in-out;
}

.rocznikWyborElement.a {
    background-color: rgb(237, 237, 237);
}

.rocznikWyborElement.a:hover,
.rocznikWyborElement.chosen {
    background-color: rgb(221, 221, 221);

}


.sectionContentTitle {

    text-align: left;
    font-size: 35px;

    font-weight: 200;
    padding: 5px 30px;
    color: rgb(56, 56, 56);
}

.sectionMargin {
    height: 20px;
    ;
}

.contactSectionTitle {
    width: 100%;
    text-align: left;
    font-size: 32px;
    font-weight: 300;
}

@media screen and (max-width: 1000px) {

    .sectionTitle{
        font-size: 24px;
    }
    .contactSectionTitle {
        width: 100%;
        text-align: center;
        font-size: 24px;
        font-weight: 300;
    }

    .nextEventMainBox {
        height: 170px;
        width: 170px;
    }

    .elementsSliderTrack>* {
        flex: 0 0 200px;
    }

    .nextEventGradient {
        height: 30%;


    }

    .rocznikSelectElement {
        height: 45px;
        width: 45px;
        padding: 0;

    }

    .rocznikSelectElementIcon {
        height: 60%;


    }

    .rocznikMainbox {
        width: 100%;
        border-radius: 0;
        border: none;

    }

    .rocznikSelectElementText {
        display: none;
    }

    .rocznikTrenerAvatar {
        height: 150px;
        width: 150px;

        overflow: hidden;
        position: absolute;
        /* względem .rocznikTop */
        bottom: -75px;
        /* połowa wysokości avatara = 100 px / 2 */
        left: 0px;
        right: 0px;
        margin: 0 auto;
        border: 5px solid white;
    }

    .rocznikGradient {

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;

    }

    .calendarTitle {
        font-size: 17px;
        text-align: center;
        text-wrap: wrap;
        padding: 10px 0px;
    }

    .rocznikContent,
    .rocznikContent.a {
        margin-top: 10px;
        justify-content: center;
    }

    .rocznikContent.a {
        margin-top: 80px;
    }

    .calendarDays.b {
        border-bottom-left-radius: 0;

        border-bottom-right-radius: 0;
    }

    .calendarDays.c {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .rocznikBasicStats {
        width: 100%;
    }

    .rocznikAttr {
        width: 90%;
    }

    .sectionContentTitle {
        text-align: center;
        font-size: 24px;
    }

    .aktualnosciMainbox {
        justify-content: center;
    }

    .gallerySectionTitle {
        text-align: center;
        font-size: 24px;
    }

    .fullBoxTitle {
        font-size: 20px;
    }

    .fullBoxText {
        font-size: 16px;
    }
}




.adminPageMainbox {
    width: 100vw;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 100vh;
}

.adminLeft {

    width: 200px;
    background-color: rgb(200, 200, 200);
    color: rgb(77, 77, 77);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2px;


}

.adminMenuElement {

    width: 100%;
    background-color: rgb(220, 220, 220);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    margin-left: 10px;

}

.adminMenuElement:hover {
    background-color: rgb(255, 255, 255);
}

.adminMenuPadding {
    background-color: rgb(220, 220, 220);
    flex: 1;
    width: 100%;
}

.adminMenuPadding.b {
    flex: none;
    min-height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 200;
}

.adminRight {
    background-color: rgb(255, 255, 255);
    flex: 1;
}

.adminToggleButton {
    display: none;
    background-color: rgb(77, 77, 77);
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
}

@media (max-width: 768px) {
    .adminToggleButton {
        display: block;
    }

    .adminPageMainbox {
        flex-direction: column;
    }

    .adminLeft {
        position: fixed;
        top: 0;
        left: -220px;
        height: 100vh;
        width: 200px;
        z-index: 1000;
        transition: left 0.3s ease-in-out;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    }

    .adminLeft.open {
        left: 0;
    }

    .adminRight {
        width: 100%;
        padding-top: 10px;
    }
}