/* Styles for navbar items */
.navbar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-item {
    padding: 0 10px; /* Adjust spacing as needed */
}

.nav-link {
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #6495ED;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #6495ED;
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

#togglePasswordVisibilityContainer {
    margin-bottom: 15px; /* Adjust margin bottom as needed */
}

.form-check-input {
    /* Hide the default checkbox */
    position: absolute;
    left: -9999px;
}

.form-check-label {
    cursor: pointer;
    padding: 10px 20px; /* Adjust padding to fit your design */
    border-radius: 5px; /* Adjust border radius for rounded corners */
    transition: background-color 0.3s ease; /* Smooth transition effect */
}

/* Change background color on hover */
.form-check-label:hover {
    background-color: #6c757d; /* Change to desired hover background color */
}

/* Change background color when checkbox is checked */
.form-check-input:checked + .form-check-label {
    background-color: #343a40; /* Change to desired checked background color */
    color: #fff; /* Change text color when checked */
}
.ms-n5 {
    margin-left: -40px;
}
.table-responsive {
    overflow-y: auto;
}