.account-login-background {
    margin-bottom: 30px;
    text-align: center;
}

.account-login-background img {
    width: 100%;
    height: 100%;
}

.account-logo img {
    width: 80px;
}

.account-title {
    font-size: 26px;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 2px;
    text-align: left;
}

.account-subtitle {
    color: #b2b2b2;
    font-size: 14px;
    margin-bottom: 10px;
    text-align: left;
}

.login-page .form-control {
    background-color: #ffffff !important;
    border: 2px solid #f06a2f6e !important;
    border-radius: 10px !important;
    height: 46px !important;
}

.open-url-btn {
    padding: 4px 6px;
    border-radius: 4px;
    margin-top: 2px;
    font-size: 11px;
    background: #2b5be9;
    color: #fff;
}

.view-url-btn {
    padding: 0px 6px;
    border-radius: 4px;
    margin-top: 10px;
    font-size: 11px;
    background: transparent;
    background-color: transparent;
    box-shadow: none;
    color: #17c1e8;
    opacity: .75;
    max-width: 100px;
    border: 2px solid #17c1e8;
}

.copy-url-btn {
    padding: 4px 6px;
    border-radius: 4px;
    margin-top: 2px;
    font-size: 11px;
    background: #2b5be9;
    color: #fff;
}

.mark-read-btn {
    padding: 4px 18px;
    font-size: 9px;
    font-weight: 700;
    text-transform: capitalize;
    border-radius: 5px;
    margin-top: 0px;
    margin-bottom: 0;
}

.view-employee-btn {
    padding: 4px 6px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: #f06a2f;
    text-transform: capitalize;
    border-radius: 5px;
}

.notification-timeline {
    height: 390px;
    overflow-y: scroll;
    overflow-x: clip;
    padding: 0 10px 0 0;
}

.employee-dashbaord .notification-timeline {
    height: 475px;
}

.timeline-reminders {
    height: 255px;
    overflow-y: scroll;
    overflow-x: clip;
    padding: 0 10px 0 0;
}

.employee-nav-link {
    background: transparent;
    border: none;
    text-transform: capitalize;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: #67748e;
}

.employee-nav-link.active {
    color: #2b5be9;
    border-bottom: 3px solid #2b5be9;
}

.employee-profile-page .tab-pane {
    max-width: 61%;
}

.employee-profile-page .tab-pane label {
    font-size: 15px;
    margin-left: 0rem;
}

.employee-profile-page .update-profile-details-btn {
    background: #2b5be9;
    color: #ffffff;
}


.profile-image-model.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 100px;
    left: 35%;
    top: 5%;
    width: 40%;
    height: 90%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.profile-image-model.image-modal img {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

/* Zoom effect */
.profile-image-model.image-modal img:hover {
    transform: scale(1.1);
}

.profile-image-model .close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #000;
    font-size: 40px;
    cursor: pointer;
}