/* ------------------------------------- */
/* BODY ELEMENT START */
/* ------------------------------------- */

.page__section__wrapper {
    display: flex;
    height: 100%;
}

/* ------------------------------------- */
/* BODY ELEMENT END*/
/* ------------------------------------- */


/* ------------------------------------- */
/* SSIDE BAR ELEMENT START*/
/* ------------------------------------- */

.side__bar__wrapper {
    position: relative;
    display: none;
}

.side__bar {
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    border: 1px solid var(--clr-border-black);

    padding: 0.6rem 1rem 1.2rem 1rem;
}


.side__bar__top__container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;

    gap: 1.8rem;
}

.side__bard__logo__container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;

    gap: 0.6rem;
}

.side__bard__logo__container hr {
    width: 100%;
}

.nav__container {
    width: 100%;
}

.nav__links__wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;

    gap: 1rem;

    margin: 0;
    padding: 0rem 1rem 0rem 0rem;
    padding: 0rem;
    margin-right: 1.2rem;
}

.nav__links__wrapper .nva__link {
    list-style: none;

    width: 100%;
    display: grid;
    grid-template-columns: 16px 1fr;
    justify-content: start;
    align-items: center;

    gap: 0.5rem;
    padding-left: 1rem;
}

.nav__link__active {
    background-color: var(--clr-btn-background-ligth);
    border-radius: 0.5rem;
    padding: 0.7rem 0rem;
}

.my__account__container {
    display: flex;
    justify-content: start;
    align-items: center;

    gap: 0.4rem;
}

.my__account__container p {
    padding: 0rem 1rem 0rem 0rem;
}

.side__bar .logout__btn__container {
    width: 100%;
}

/* xxxs */
/* @media (min-width: 320px) {} */

/* xxs */
/* @media (min-width: 380px) {} */

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
/* @media (min-width: 768px) {} */

/* lg */
@media (min-width: 1024px) {

    .side__bar__wrapper {
        position: relative;
        display: block;
    }
}

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
/* @media (min-width: 1536px) {} */


/* ------------------------------------- */
/* SIDE BAR ELEMENT END */
/* ------------------------------------- */


/* ------------------------------------- */
/* MOBILE SIDE BAR ELEMENT END */
/* ------------------------------------- */

.mobile__side__bar__wrapper {
    display: none;
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 9999;
    background-color: var(--clr-white);

    transition: all 0.9s all;
}

.mobile__side__bar__active {
    right: 0;
}

.mobile__side__bar__wrapper .side__bard__logo__container {
    width: 100%;
}

.mobile__side__bar__wrapper .side__bard__logo__container .top__nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    color: var(--clr-black);
    font-size: var(--size-2xl);
}

.mobile__side__bar__wrapper .logout__btn__container {
    margin-bottom: 3.5rem;
}

/* xxxs */
/* @media (min-width: 320px) {} */

/* xxs */
/* @media (min-width: 380px) {} */

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
/* @media (min-width: 768px) {} */

/* lg */
@media (min-width: 1024px) {

    .mobile__side__bar__wrapper {
        display: none;
    }
    
}

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
/* @media (min-width: 1536px) {} */


/* ------------------------------------- */
/* MOBILE SIDE BAR ELEMENT END */
/* ------------------------------------- */


/* ------------------------------------- */
/* PAGE CONTENT CONTAINER START */
/* ------------------------------------- */

.main {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    flex: 1;

    /* gap: 1rem; */
}

/* ------------------------------------- */
/* PAGE CONTENT CONTAINER END */
/* ------------------------------------- */


/* ------------------------------------- */
/* MOBILE NAV BAR START */
/* ------------------------------------- */

.mobile__nav__bar {
    background-color: var(--clr-white);
    border: none;
    border-bottom: 1px solid var(--clr-light-black-text);

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    padding: 0.5rem 0.8rem;
}

/* xxxs */
/* @media (min-width: 320px) {} */

/* xxs */
/* @media (min-width: 380px) {} */

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
/* @media (min-width: 768px) {} */

/* lg */
@media (min-width: 1024px) {

    .mobile__nav__bar {
        display: none;
    }
}

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
/* @media (min-width: 1536px) {} */

/* ------------------------------------- */
/* MOBILE NAV BAR END */
/* ------------------------------------- */


/* ------------------------------------- */
/* TOP BANNER START */
/* ------------------------------------- */

.top__banner {
    width: 100%;
    top: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;

    border: none;
    border-bottom: 1px solid var(--clr-border-black);
    padding: 1rem 0.8rem;
}

.top__banner__title {
    color: var(--clr-black);
    font-size: var(--size-text);
    font-weight: 500;
}

/* xxxs */
/* @media (min-width: 320px) {} */

/* xxs */
/* @media (min-width: 380px) {} */

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
/* @media (min-width: 768px) {} */

/* lg */
@media (min-width: 1024px) {

    .top__banner__title {
        color: var(--clr-black);
        font-size: var(--size-2xl);
        font-weight: 400;
    }
}

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
/* @media (min-width: 1536px) {} */


/* ------------------------------------- */
/* TOP BANNER END */
/* ------------------------------------- */

/* ------------------------------------- */
/* PAGE CONTAINER WRAPPER START */
/* ------------------------------------- */

.page__content__wrapper {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1rem 1rem;
}

/* Custom Scrollbar Styles */
.page__content__wrapper::-webkit-scrollbar {
    width: 10px; 
    height: 10px; 
}

.page__content__wrapper::-webkit-scrollbar-track {
    background: transparent; 
    margin: 3px 0;
}

.page__content__wrapper::-webkit-scrollbar-thumb {
    background: #C1C1C1;
    border-radius: 5px;
}

.page__content__wrapper::-webkit-scrollbar-thumb:hover {
    background: #C1C1C1;
}

/* ------------------------------------- */
/* PAGE CONTAINER WRAPPER END */
/* ------------------------------------- */

/* ------------------------------------- */
/* PAGE TOP BANNER START */
/* ------------------------------------- */

.page__content__container .page__top__banner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 1rem;
}

.page__content__container .page__top__banner .page__title__container {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;

    gap: 0.6rem;
}

.page__content__container .page__top__banner .page__title__container .img {
    width: 28px;
}

.page__content__container .page__top__banner .page__title__container .title {
    color: var(--clr-black);
}

.page__content__container .page__top__banner .page__title__container .title {
    color: var(--clr-black);
}