    .dash-container * {
        text-align: right;
    }

    button:focus,
    a:focus {
        outline: none;
    }

    a:link,
    a:visited {
        color: unset;
    }

    hr {
        background-color: unset;
    }

    .dash-container {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .dash-inner {
        background-color: #F0F1F3;
        width: calc(100% - 50px);
        height: calc(100% - 50px);
        max-width: 1300px;
        display: flex;
    }

    .dash-inner.full-width {
        width: 100%;
        height: 100%;
        max-width: unset;
        border: solid #041737 3px;
    }

    /* Navication */

    .dash-container nav.main-nav {
        position: relative;
        width: 250px;
        height: 100%;
        padding: 0;
        overflow: hidden;
        background-color: #041737;
        transition: all ease-in-out 0.5s;
    }

    .nav-container {
        position: relative;
        height: 100%;
        padding: 20px;
        overflow-y: overlay;
        transition: all ease-in-out 0.3s;
    }

    .dash-container nav.main-nav::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 450px;
        height: 150px;
        background-color: #0c2a5c4a;
        transform: rotate(-45deg);
        transition: all ease-in-out 0.4s;
    }

    .dash-container nav.main-nav::after {
        content: '';
        position: absolute;
        right: 0;
        bottom: -89px;
        width: 450px;
        height: 150px;
        background-color: #5c4fa11a;
        transform: rotate(45deg);
        transition: all ease-in-out 0.4s;
    }

    button.minimized-btn {
        position: absolute;
        left: 0;
        top: 20px;
        background-color: #3963ad75;
        border-radius: 0 15px 14px 0;
        outline: none;
        z-index: 9;
    }


    button.minimized-btn:focus {
        outline: none;
    }

    button.minimized-btn .fa-angles-left {
        display: none;
    }

    nav h2 {
        color: #F48557;
        font-size: 20px;
        margin: 15px 20px 20px 10px;
        height: 25px;
        line-height: 25px;
        overflow: hidden;
    }

    .nav-title {
        white-space: nowrap;
        opacity: 1;
        transition: all ease-in-out 0.4s;
    }

    .nav-main-btn button {
        width: 100%;
        background: #3963AD;
        border-radius: 8px;
        padding: 0 10px;
        font-weight: 400;
        margin: 10px 0 20px 0;
        text-align: right;
        height: 50px;
        line-height: 50px;
        overflow: hidden;
    }

    .nav-main-btn button:focus {
        outline: none;
    }

    .nav-main-btn button i {
        padding: 0 10px 0 5px;
    }

    .nav-main-btn button span {
        opacity: 1;
        transition: all ease-in-out 0.4s;
    }

    .nav-wrap h4 {
        color: #305F95;
        font-size: 17px;
        margin: 15px 0;
        opacity: 1;
        transition: all ease-in-out 0.4s;
        white-space: nowrap;
    }

    .nav-wrap ul {
        list-style: none;
        padding: 0;
    }

    .nav-wrap ul li {
        font-size: 15px;
    }

    .nav-wrap ul li a {
        position: relative;
        color: #73A5DA;
        display: block;
        text-decoration: none;
        padding: 6px 0;
        overflow: hidden;
        white-space: nowrap;
        transition: all ease-in-out 0.4s;
    }

    .nav-wrap ul li a:focus {
        outline: none;
    }

    .nav-wrap ul li a::before {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        width: 0;
        height: 100%;
        background: #3963ad1a;
        transition: all ease-in-out 0.4s;
    }

    .nav-wrap ul li a:hover:before {
        width: 100%;
    }

    .nav-wrap ul li a span {
        opacity: 1;
        transition: all ease-in-out 0.4s;
    }

    .nav-wrap ul li a i {
        padding: 0 10px;
        transition: all ease-in-out 0.4s;
    }

    .nav-wrap hr {
        border-color: #0a2c66;
    }

    /* main dashboard */


    .dash-container .main {
        flex: 1;
        height: 100%;
        width: 100%;
        flex-wrap: wrap;
        overflow: hidden;
    }

    .dash-container .main .dashboard-page {
        height: 100%;
    }

    .dash-container .main .dashboard-page:not(.start-active) {
        display: none;
    }

    .dashboard-page.blank {
        display: flex !important;
        align-items: center;
        justify-content: center;
        color: #d2d6dc;
        font-size: 4em;
        text-align: center;
    }

    .dashboard-page.blank span {
        text-align: center;
    }

    .dash-container .main h1 {
        font-size: 28px;
        padding: 28px 40px 15px 20px;
        margin: 0;
        font-weight: bold;
    }

    .dash-container .dashcards {
        height: calc(100% - 80px);
        padding: 5px 30px 10px 30px;
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        overflow-y: overlay;
    }

    @media screen and (max-width: 800px) {
        .dash-container .dashcards {
            padding: 10px;
        }
    }

    .dashcards .dash-card {
        position: relative;
        background-color: white;
        width: calc(50% - 10px);
        margin: 5px;
        padding: 15px;
        border-radius: 12px;
        min-height: 181px;

        display: flex;
        flex-wrap: wrap;
        align-content: space-between;
    }

    .dashcards .dash-card.c-1 {
        width: calc(100% - 10px);
    }

    .dashcards .dash-card.c-2 {
        width: calc(50% - 10px);
    }

    .dashcards .dash-card.c-3 {
        width: calc(33.3% - 10px);
    }

    .dashcards .dash-card.c-4 {
        width: calc(25% - 10px);
    }

    .dashcards .dash-card h3 {
        font-size: 17px;
        padding: 0;
        color: #041737ad;
        max-width: calc(100% - 60px);
        line-height: 25px;
        height: 50px;
        overflow: hidden;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .dashcards .dash-card>svg{
        position: absolute;
        left: 20px;
        top: 25px;
        padding: 10px;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 50px;
        border-radius: 50%;
        background-color: #de8e6224;
        color: #de8e62;
    }

    .dashcards .dash-card>i {
        position: absolute;
        left: 20px;
        top: 25px;
        font-size: 21px;
        width: 50px;
        height: 50px;
        text-align: center;
        line-height: 50px;
        border-radius: 50%;
        background-color: #de8e6224;
        color: #de8e62;
    }

    .dashcards .dash-card .larg-number {
        font-size: 48px;
        font-weight: bold;
        padding: 0 35px;
    }
    .dashcards .dash-card .larg-number small {
        font-size: 20px;
        font-weight: 400;
    }

    .card-head-1 {
        height: 80px;
        width: 100%;
        display: flex;
        align-items: center;
    }

    .card-body-1 {
        width: 100%;
        /* height: calc(100% - 80px - 50px - 15px); */
    }

    .card-footer-1 {
        height: 50px;
        width: 100%;
        display: flex;
        align-items: flex-end;
        font-size: 14px;
        color: #8c95a3;
    }

    .card-footer-1:empty{
        display: none;
    }

    .card-footer-1 b {
        color: #041737;
        font-weight: 400;
    }

    .card-footer-1 a {
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-color: #04173759;
        color: #041737;
    }

    @media screen and (max-width: 1000px) {

        .dashcards .dash-card.c-1,
        .dashcards .dash-card.c-2,
        .dashcards .dash-card.c-3,
        .dashcards .dash-card.c-4 {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
        }
    }

    /**********************************   Edit Bootstrap     ***********************************/

    /* bootstap modal */
    .modal-header .close {
        padding: 1rem 1rem !important;
        margin: -1rem auto -1rem -1rem !important;
    }

    .form-check-label {
        padding-right: 1.25rem;
    }

    .form-check {
        padding-right: 1.25rem;
    }

    .modal-content {
        background-color: #c3c8cf !important;
    }
    .modal-content input[type="text"],
    .modal-content input[type="number"],
    .modal-content input[type="url"],
    .modal-content textarea{
        background-color: #e0ebffd9;
    }


 
    /**********************************   students page      ***********************************/
    
    span.last-seen {
        color: #2251a5;
        font-size: 14px;
    }

    /**********************************   pagination      ***********************************/

    ul.pagination {
        flex-wrap: wrap;
    }

    ul.pagination a.page-link,
    ul.pagination a.page-link:focus {
        background-color: white;
        color: #028fbc !important;
    }

    ul.pagination a.page-link:hover,
    ul.pagination li.active a.page-link {
        background-color: #041737;
        color: #ffffff !important;
    }

    ul.pagination li:first-child a.page-link {
        border-radius: 0;
        border-top-right-radius: 0.25rem;
        border-bottom-right-radius: 0.25rem;
    }

    ul.pagination li:last-child a.page-link {
        border-radius: 0;
        border-top-left-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
    }

    ul.pagination li.active a.page-link {
        cursor: default;
    }

    ul.pagination li.active a.page-link:focus {
        outline: none;
        box-shadow: none;
    }



    button#studentsFilterSelector,
    button#studentsRowPerPageSelector {
        float: left;
        margin-left: 11px;
        border-radius: 0.2rem;
        min-width: 150px;
        padding: 0 10px;
        text-align: center;
        border: solid 1px;
        background-color: white;
        color: #028fbc;
    }

    button#studentsFilterSelector span,
    button#studentsRowPerPageSelector span {
        padding: 0 5px 0 10px;
    }

    button#studentsFilterSelector i,
    button#studentsRowPerPageSelector i {
        float: left;
    }

    /********************************************************************************************/






    /********************************************************************************************/
    /* highcharts */
    /********************************************************************************************/

    /* remove credits */
    text.highcharts-credits {
        display: none;
    }

    .progress-card path.highcharts-point.highcharts-color-0 {
        fill: #212529;
    }

    .progress-card text {
        display: none;
    }


    /********************************************************************************************/
    /* modal */
    /********************************************************************************************/

    
    .modal-cover {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999999;
    }
    .modal-inner {
        display: flex;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        justify-content: center;
        align-items: center;
    }
    .modal-box {
        background-color: #fff;
        padding: 0 20px;
        margin: 0 5px;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        width: 800px;
        max-width: 100%;
    }

    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }

    .modal-body {
        padding: 20px;
        max-height: 450px;
        overflow: auto;
    }

    .modal-footer {
        display: flex;
        justify-content: flex-end;
        padding: 5px;
    }

    .btn-close-modal {
        background-color: #212529;
        color: #fff;
        border: none;
        padding: 5px 10px;
        border-radius: 5px;
        cursor: pointer;
    }

    @media (max-width: 768px) {
        .modal-box {
            padding: 0;
        }
    }



    /********************************************************************************************/
    /* dashboard tables */
    /********************************************************************************************/

    .dash-table {
        width: 100%;
        background-color: transparent;
        border-collapse: separate;
        border-spacing: 5px 10px;
        margin: 20px 0;
    }

    .dash-table th, .dash-table td {
        background-color: #21252912;
        padding: 12px 0;
        text-align: center;
        border-radius: 5px;
        width: auto;
    }

    .dash-table th.min, .dash-table td.min {
        width: 0;
    }

    .dash-table th.width-10, .dash-table td.width-10 {
        width: 10%;
    }
    .dash-table th.width-15, .dash-table td.width-15 {
        width: 15%;
    }
    .dash-table th.width-20, .dash-table td.width-20 {
        width: 20%;
    }
    .dash-table th.width-25, .dash-table td.width-25 {
        width: 25%;
    }
    .dash-table th.width-30, .dash-table td.width-30 {
        width: 30%;
    }
    
    .dash-table th {
        font-weight: bold;
        background-color: transparent;
    }

    .dash-table .highlighted td {
        background-color: #212529bd;
        color: honeydew;
    }

    .dash-table .light td {
        background-color: #212529bd;
        color: honeydew;
    }

    .dash-table .light td {
        background-color: white;
        border: solid 1px #efeff0;
        color: #5f5f5f;
    }

    .dash-table td {
        border: none;
    }

    .letter-spacing-1 {
        letter-spacing: 1px;
    }

    .letter-spacing-2 {
        letter-spacing: 2px;
    }

    .letter-spacing-3 {
        letter-spacing: 3px;
    }




    /********************************************************************************************/
    /* dashboard forms */

    form.update-project {
        display: flex;
        flex-direction: column;
        padding: 20px;
        border-radius: 8px;
    }

    form.update-project label {
        margin-bottom: 5px;
        font-weight: bold;
    }

    form.update-project .input-group {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    form.update-project input[type="number"],
    form.update-project input[type="text"],
    form.update-project input[type="date"],
    form.update-project textarea,
    form.update-project select {
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 14px;
        flex: 1; /* Allows inputs to grow and fill the space */
        margin-left: 10px; /* Adds space between inputs */
    }

    form.update-project h3 {
        margin-top: 20px;
        margin-bottom: 10px;
        font-size: 18px;
        color: #333;
    }

    form.update-project button.project-btn {
        width: 145px;
        text-align: center;
        display: inline-block;
        padding: 5px 0;
        background-color: #fff;
        color: #2b3222;
        border: solid 1px #2b32228c;
        border-radius: 4px;
        cursor: pointer;
        transition: all ease-in-out 0.3s;
        margin-top: 10px;
    }

    form.update-project button.project-btn:hover {
        background-color: #2b3222;
        color: #fff;
    }

    form.update-project label.col-md-6 {
        display: flex;
        align-items: center;
    }

    .dynamic-field {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    .dynamic-field > * {
        margin-right: 10px; /* Adds space between dynamic fields */
    }

    .dynamic-field button {
        background-color: #dc3545;
        padding: 3px 10px;
        border-radius: 5px;
        color: white;
    }

    .dynamic-field button:hover {
        background-color: #c82333;
    }

    /* all classes that starts with .small- */
    .dynamic-field [class^="small-"] {
        text-align: center;
        flex: unset !important;
    }

    .dynamic-field .small-50 {
        width: 50px;
    }

    .dynamic-field .small-100 {
        width: 100px;
    }

    .dynamic-field .small-150 {
        width: 150px;
    }

    .dynamic-field .small-200 {
        width: 200px;
    }

    .dynamic-field .small-250 {
        width: 250px;
    }

    .dynamic-field .small-300 {
        width: 300px;
    }


    @media screen and (max-width: 768px) {
        .dynamic-field {
            flex-direction: column;
        }
        
        .dynamic-field input,
        .dynamic-field select,
        .dynamic-field textarea {
            width: 100%;
        }

        .dynamic-field > * {
            margin-right: 0;
            margin-bottom: 10px;
        }

        .dynamic-field [class^="small-"] {
            width: 100%;
            text-align: start;
        }

    }

    /********************************************************************************************/


    .notes-container {
        max-height: 300px;
        overflow-y: auto;
        margin-top: 20px;
        padding: 0 10px;
    }

    .note-item {
        display: flex;
        flex-direction: row;
        background-color: #f5f5f5;
        border-radius: 5px;
        padding: 10px;
        margin-bottom: 10px;
        position: relative;
    }

    .note-item.loading{
        opacity: 0.5;
    }

    .note-item .note-text textarea {
        background: #00000003;
        width: calc(100% - 10px);
        padding: 10px 15px;
    }

    .note-item .note-text {
        flex: 1;
        overflow: hidden;
        line-height: 1.5;
    }

    .note-item .note-text .note-content{
        white-space: pre-wrap;
    }

    .note-actions {
        display: flex;
        justify-content: flex-end;
        visibility: hidden;
        opacity: 0;
        gap: 10px;
        margin-top: 10px;
        transition: all ease-in-out 0.3s;
    }

    .note-item:hover:not(.loading) .note-actions {
        visibility: visible;
        opacity: 1;
    }

    .note-actions a {
        cursor: pointer;
        color: #ed6305;
        font-size: 0.9em;
        text-decoration: none;
    }

    .note-actions a:hover {
        text-decoration: underline;
    }

    .read-more {
        color: #ed6305;
        font-size: 0.9em;
        cursor: pointer;
    }

    .note-input {
        margin-top: 10px;
    }

    .note-input textarea {
        width: 100%;
        height: 80px;
        border: 1px solid #ccc;
        border-radius: 5px;
        padding: 5px;
    }

    .note-input button {
        background-color: #ed6305;
        color: white;
        border: none;
        border-radius: 5px;
        padding: 10px 15px;
        margin-top: 5px;
        cursor: pointer;
    }

    .note-input button:hover {
        opacity: 0.9;
    }

    /********************************************************************************************/

    