
* {
    box-sizing: border-box;
    --main-color: #192f72;
    --main-color-rgb: 25, 47, 114;
    --second-color: #f4713d;
    --second-color-rgb: 244, 113, 61;
}

.bg-nita-orange {
    color: #FFFFFF !important;
    background-color: #f4713d !important;
}

.bg-nita-bleu {
    color: #FFFFFF !important;
    background-color: #192f72 !important;
}


.text-nita-orange {
    color: #f4713d !important;
}

.text-nita-bleu {
    color: #192f72 !important;
}

body #app {
    height: 100vh;
    width: 100%;
    background: #f6f8fe;
    padding: 0 20px;
    display: flex;
    gap: 20px;
    overflow-y: auto;
}

body #app .main {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: calc(100% - 270px);
}

/* start sidebar style */
body #app aside {
    background-color: var(--main-color);
    width: 250px;
    min-width: 250px;
    position: sticky;
    z-index: 1;
}

body #app aside.sidebar {
    border-radius: 12px 12px 0 0;
    height: calc(100% - 15px);
    top: 15px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

body #app aside.sidebar .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    margin: 5%;
    border-radius: 12px;
    background-color: #fff;
    margin-top: 5%;
    overflow: hidden;
}

body #app aside.sidebar .logo img {
    height: 60%;
    width: 60% !important;
    object-fit: fill;
}
body #app aside.mobile-sidebar .logo-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    margin: 5%;
    border-radius: 12px;
    background-color: #fff;
    margin-top: 20%;
    overflow: hidden;
}

body #app aside.mobile-sidebar .logo-mobile img {
    height: 60%;
    width: 60% !important;
    object-fit: fill;
}

 
body #app aside.mobile-sidebar {
    height: 100%;
    width: 100%;
    position: absolute;
    left: -100%;
    top: 0;
    opacity: 0;
    transition: .3s ease-in;
    display: none;
}

body #app aside.mobile-sidebar .menu-container {
    max-width: 550px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

body #app aside.mobile-sidebar .close {
    position: absolute;
    right: 15px;
    top: 18px;
    cursor: pointer;
}

body #app aside.mobile-sidebar .close span {
    font-size: 45px;
    color: var(--second-color);
}

body #app aside .menu-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 15px 15px;
    margin: 0;
    flex: 1;
    overflow-y: auto;
}

body #app aside .menu-list li {
    list-style: none;
}

body #app aside .menu-list li .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 10px;
    border-radius: 10px;
    background: #223b89;
    color: #6d8df0;
    padding: 10px 15px;
    cursor: pointer;
}

body #app aside .menu-list li .nav-link::after {
    display: none;
}

body #app aside .menu-list li .nav-link .label {
    font-size: 14px;
    text-wrap: wrap;
    letter-spacing: -.16px;
    font-weight: 600;
    line-height: normal;
    flex: 1;
}

body #app aside .menu-list li .nav-link .icon {
    font-size: 25px;
    /* color: #6d8df0; */
}

body #app aside .menu-list li .nav-link.active {
    color: #fff;
    background: var(--second-color);
}

body #app aside .menu-list .sub-menu {
    padding-inline-start: 15px;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

body #app aside .menu-list .sub-menu .dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 10px;
    border-radius: 10px;
    color: #6d8df0;
    padding: 5px 10px;
    text-decoration: none;
    cursor: pointer;
}

body #app aside .menu-list .sub-menu .dropdown-link.active {
    color: var(--second-color);
}

body #app aside .menu-list .sub-menu .dropdown-link .icon {
    font-size: 20px;
}


body #app aside .menu-list .sub-menu .dropdown-link .label {
    font-size: 14px;
    letter-spacing: -.16px;
    font-weight: 600;
    line-height: normal;
    flex: 1;
}
/* mobile-sidebar */
/* end sidebar style */
/* start header style */

body #app .main .app-header{
    position: sticky;
    top: 0px;
    background-color: #f6f8fe;
    padding: 15px 0px;
}

body #app .main .app-header .header-wrapper {
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #cbd1e6;
    background: #fff;
}
body #app .main .app-header .header-wrapper .header-wrapper-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
body #app .main .app-header .header-wrapper .header-wrapper-alert {
    width: 100%;
}
/* .main */

body #app .main .app-header .left-side {
    display: flex;    
    align-items: center;
    gap: 10px;
}

body #app .main .app-header .left-side #toggle-btn {
    background: #fff;
    border-radius: 50%;
    border: 2px solid var(--second-color);
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
}
body #app .main .app-header .left-side #toggle-btn {
    font-size: 18px;
}
body #app .main .app-header .left-side .main-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

body #app .main .app-header .left-side .main-title .head-title {
    font-size: 20px;
    letter-spacing: -.16px;
    color: #214393;
    font-weight: 700;
    line-height: normal;
}

body #app .main .app-header .infos {
    display: flex;
    align-items: center;
    gap: 15px;
}

body #app .main .app-header .infos .notif {
    position: relative;
}

body #app .main .app-header .infos .notif .icon {
    color: var(--main-color);
}

body #app .main .app-header .infos .user-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px;
    border-radius: 1000px;
    background: #f1f1f1;
    cursor: pointer;
}

body #app .main .app-header .infos .user-dropdown .icon {
    color: var(--main-color);
}

body #app .main .app-header .infos .user-dropdown img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
}

/* end header style */

body #app .main .content {
    flex: 1;
}

.main_menu_flex .menu-sidebar{
background-color: transparent;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    padding: 6px 10px;
}
.main_menu_flex .menu-sidebar i{
    font-size: 25px;
    color: #333;
}

/* Personnalisation des lignes alternées (table-striped) */
.table.table-striped tbody tr:nth-of-type(odd) {
    background-color: #0079e4; /* Exemple : bleu clair */
}
.table.table-striped tbody tr:nth-of-type(even) {
    background-color: #e6f7ff; /* Exemple : bleu encore plus clair */
}

/* Personnalisation du hover (table-hover) */
.table.table-hover tbody tr:hover {
    background-color: #cce7ff; /* Exemple : bleu clair plus foncé */
}

/* Personnalisation des bordures (table-bordered) */
.table-bordered td,
.table.table-bordered tbody tr {
    border: none; /* Même couleur pour les cellules */
}



