/*@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
*/
:root {
    --primary-color: #f7f5f5;
    /*--primary-color: #5D74B2;*/
    /*--primary-color: #53BBBE;*/
    --secondary-color: #53BBBE;
    --font-family: 'Nunito Sans', sans-serif;
    --font-size: 28px;
    --background-color: #53BBBE;
    --text-color: #fff;
    --border-radius: 4px;
    --maincolor: #53BBBE;
}
a{
    text-decoration:none;
    /*text-decoration-color:nono;*/
}

a.navbar-logo {
    font-weight: 700;
    font-size: var(--font-size);
    font-family: var(--font-family);
    color:black;
}


html {
    font-family: var(--font-family);
    overflow-x:hidden;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}



.btn-primary {
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: var(--border-radius);
    padding: 10px 10px;
    border: none;
    cursor: pointer;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: var(--border-radius);
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}
/*.card-footer {
    font-weight: 700;
    color: #000;
    z-index: 999;
    background-color:transparent;*/
    /*background-color: var(--primary-color);*/
    /*box-shadow: none;
    border: none;
}*/

.display-4{
    font-family:var(--font-family);
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding:0 0 0 20px;
    background-color: var(--primary-color); /* Adjust as needed */
}

.content {
    margin-left: 250px;
    margin-top: 50px;
    justify-content: center;
    align-items: center;
    /*background-color:var(--primary-color);*/
}
.card-custom {
    width:100%;
    height:120px;
    margin-left: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* prevents jump */
    background-color: var(--background-color);
}

.nav-link:hover {
    color: black !important;
}

.nav-link.login-button {
    background-color: black;
    color: white !important;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

    .nav-link.login-button:hover {
        background-color: #333; /* Slightly lighter black on hover */
        color: white !important;
    }

/*.dropdown-item {
    background-color: var(--background-color)
}*/
/*body {
    display: flex;
    flex-direction: column;
}*/
.header {
    background-color: var(--secondary-color);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    color: white;
}

.sidebar {
    width: 250px;
    background-color: var(--secondary-color);
    padding-top: 0px;
    height: calc(100vh - 60px); /* Adjusted to account for the header height */
    position: fixed;
    top: 66px; /* Adjusted to account for the header height */
    left: 0;
    overflow-x: hidden;
    transition: width 0.3s ease;
    z-index: 1000;
}

    .sidebar.collapsed {
        width: 100px;
    }

        .sidebar.collapsed .nav-link {
            justify-content: center;
        }

            .sidebar.collapsed .nav-link span {
                display: none;
            }

    .sidebar .nav-link {
        font-size: 1.1rem;
        font-weight: 500;
        color: white;
        padding: 25px;
        text-align: center;
        display: flex;
        align-items: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease, font-weight 0.3s ease;
    }

        .sidebar .nav-link i {
            margin-right: 10px;
            font-size: 1.2rem;

            color:#fff;
        }

        .sidebar .nav-link:hover, .sidebar .nav-link.active {
            background-color: #fff;
            color: #000;
            font-weight: 700;
            transition: transform 0.3s ease, box-shadow 0.3s ease, font-weight 0.3s ease, background-color 0.3s ease, color 0.3s ease;
        
            /*transform: scaleX(1);*/
            /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
        }
            .sidebar .nav-link:hover i,
            .sidebar .nav-link.active i {
                color: var(--maincolor); /* Change this to the desired icon color */
            }

.collapse-btn {
    position: absolute;
    top: 1px;
    right: 0px;
    background-color: var(--background-color);
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    padding: 5px 10px;
    cursor: pointer;
}

.content {
    margin-left: 250px;
    padding: 20px;
    width: calc(100% - 250px);
    transition: margin-left 0.3s ease, width 0.3s ease;
    margin-top: 60px; /* Adjusted to account for the header height */
}

.sidebar.collapsed + .content {
    margin-left: 160px;
    width: calc(100% - 80px);
}

/*.card-footer {
    bottom: 0;
    position: fixed;
    width: calc(100% - 250px);
    background-color: transparent;
    text-align: right;
    left: 250px;
    transition: left 0.3s ease, width 0.3s ease;
}
*/
.sidebar.collapsed + .content + .card-footer {
    left: 80px;
    width: calc(100% - 80px);
}

/*<==============================================================================>>*/
/*Login*/


