.navbar-nav .nav-link {
color: white !important;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
}

  .navbar-nav .nav-link:hover {
        /* Styles for hover effect */
        color: floralwhite !important;
        background-color: #03404c;
  }

    .navbar-nav .nav-link.active {
        text-decoration: underline;
        color: white;
        font-weight: bold;
    }


/*
 Additional styles for rounded corners */
.rounded {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: wheat;
}

.navbar-nav {
    background-color: #055160;
}

.menu-bar {
    background-color: #055160;
    position: sticky;
    top: 0;
    z-index: 1;
}


.footer {
    position: absolute;
    color: white;
    text-align: justify-all;
    bottom: 0;
    width: 100%;
    background: linear-gradient( to top,#00c6a7,#03404c );
    padding: 3px 0;  Adjust the padding as needed 
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-button {
    background-color:#055160;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

    .dropdown-button:hover {
        background-color: #03404c;
        color: white;
    }


.dropdown-content {
    display: none;
    position: absolute;
    background-color: #055160;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
        color: white;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

.dropdown-content a:hover {
            background-color: #03404c;
            color: white;
}
.rounded {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: wheat;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.pr-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid blue;
}

.lgout {
    border: none;
    padding-left: 15px;
    background-color: #055160;
    padding-bottom: 5px;
}

    .lgout:hover {
        background-color: #1e4d92;
        color: white;
        border: 2px solid red;
    }

/*   For Profile Picture  */

.profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid blue;
}

.user-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ccc;
}

.user_drop {
    background-color: #055160;
    color: white;
    padding: 1px;
    border: none;
    cursor: pointer;
}

/*For Notification shows*/
.notification-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .notification-popup a {
        color: #004085;
        text-decoration: none;
        font-weight: bold;
    }

.close-btn {
    background-color: #721c24;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    margin-top: 10px;
    cursor: pointer;
}

    .close-btn:hover {
        background-color: #5a1a1d;
    }








.notification-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    z-index: 1009;
    max-width: 300px;
    animation: slide-in 0.5s ease-in-out;
}

    .notification-popup img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
    }

    .notification-popup a {
        color: #004085;
        text-decoration: none;
        font-weight: bold;
    }

    .notification-popup .close-btn {
        background-color: #721c24;
        color: white;
        border: none;
        border-radius: 5px;
        padding: 5px 10px;
        margin-left: auto;
        cursor: pointer;
    }

        .notification-popup .close-btn:hover {
            background-color: #5a1a1d;
        }

@keyframes slide-in {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/*For mobile view*/

.navbar-nav .nav-link {
    font-size: 1rem;
    padding: 0.5rem 0.8rem;
}

@media (max-width: 768px) {
    .navbar-nav .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.5rem;
    }

    .navbar-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
    }
}
