﻿html {
    font-size: 14px;
}

@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%;
}

body {
    margin-bottom: 60px;
    background-color: #f2f4f7 !important;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 80px;
    background-color: white;
    padding-top: 30px;
    color: white;
    transition: width 0.3s ease-in-out;
}

    .sidebar h2 {
        text-align: center;
        color: #ecf0f1;
        margin-bottom: 40px;
        font-size: 22px;
        display: none;
    }

    /* User profile image */
    .sidebar .profile-img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin: 0 auto;
    }

    .sidebar a {
        color: #6a7481;
        padding: 12px;
        text-decoration: none;
        display: block;
        margin: 10px 0;
        border-radius: 5px;
        font-size: 20px;
        text-align: center;
        transition: background-color 0.3s ease-in-out;
    }

        .sidebar a:hover {
            background-color: #d2ebf7;
            color: #08556c;
        }

        .sidebar a i {
            font-size: 20px;
        }

.home-menu-icon {
    margin: 8px 0 8px 6px;
    padding: 10px;
    height: 80px !important;
    padding: 5px !important;
}

.portrait-menu-icon {
    width: 90%;
    height: 90%;
    margin: 8px 0 8px 4px;
    padding: 10px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px ridge #03ad98;
    object-position: top;
}

/* Content Area */
.content {
    margin-left: 80px;
    padding: 30px;
    transition: margin-left 0.3s ease-in-out;
}

/* Profile Header */
.profile-header {
    display: flex;
    align-items: center;
    /* border-bottom: 1px solid #ddd;*/
    padding-bottom: 20px;
    margin-bottom: 30px;
}

    .profile-header img {
        border-radius: 50%;
        width: 120px;
        height: 120px;
        margin-right: 20px;
    }

    .profile-header h1 {
        font-size: 32px;
        color: #333;
        font-weight: bold;
    }

    .profile-header p {
        font-size: 16px;
        color: #777;
    }

.progress-bar {
    height: 20px;
    background-color: #d2f4ed;
    border-radius: 7px;
    margin-bottom: 15px;
}

/* Summary Card */
.summary-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
}

    .summary-card h3 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .summary-card p {
        font-size: 16px;
        color: #555;
    }

/* Section Cards */
.section-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 20px;
    transition: transform 0.2s ease-in-out;
}

    .section-card:hover {
        transform: translateY(-5px);
    }

.section-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.section ul {
    list-style: none;
    padding: 0;
}

    .section ul li {
        font-size: 16px;
        color: #555;
        margin-bottom: 10px;
    }

.link-card {
    color: #3498db;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

    .link-card:hover {
        text-decoration: underline;
    }

.profile-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /*max-width: 800px;*/
    padding: 20px;
    border-radius: 8px;
    /*box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);*/
}

.profile-item {
    width: 30%;
    margin-bottom: 15px;
    position: relative;
}

    .profile-item h4 {
        margin: 0;
        font-size: 14px;
        color: #555;
    }

    .profile-item p {
        margin: 5px 0;
        font-size: 16px;
        color: #333;
        display: flex;
        align-items: center;
    }

    .profile-item input {
        width: 100%;
        border: none;
        font-size: 16px;
        color: #333;
        padding: 5px;
        background: transparent;
    }

        .profile-item input:disabled {
            background: transparent;
            border: none;
            color: #333;
        }

.save-btn {
    display: none;
}

.btnCustom {
    margin-top: 15px;
    padding: 8px 15px;
    background: #08556c;
    color: #f0f4f6;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 20px;
}

#editImageModal {
    display: flex;
    gap: 10px;
    align-items: center;
}

.skillsPerks-section {
    margin-top: 0px;
}

    .skillsPerks-section h3 {
        margin-bottom: 10px;
        font-size: 16px;
        color: #333;
    }

.skillsPerks-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skillsPerks-tag {
    border: solid 1px #e7ebee;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: #333;
    white-space: nowrap;
}

    .skillsPerks-tag:hover {
        background: #b8e7fc;
        color: #1485ba;
       /* font-weight:bold;*/
        /*border: solid 3px #b8e7fc;*/
        /*transform: scale(1.00);*/
    }

.remove-skillsPerks {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    text-align: center;
    line-height: 18px;
    cursor: pointer;
}

.salary-range {
    display: flex;
    gap: 10px;
    align-items: center;
    /* border-bottom: 1px solid rgb(204, 204, 204);*/
}

#editJobPrefernces {
    margin-top: 10px;
}

#searchSpeciality {
    width: 200px;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#regionDrp {
    width: 200px;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#municipalityDrp {
    width: 200px;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#editRegion {
    padding-top: 9px;
}

.distance2 {
    padding-top: 9px;
}

#suggestions {
    list-style-type: none;
    padding-left: 0;
    border: 1px solid #ccc;
    max-height: 100px;
    overflow-y: auto;
    width: 200px;
}

    #suggestions li {
        padding: 5px;
        cursor: pointer;
    }

        #suggestions li:hover {
            background-color: #f0f0f0;
        }

#regionSuggestions {
    list-style-type: none;
    padding-left: 0;
    border: 1px solid #ccc;
    max-height: 100px;
    overflow-y: auto;
    width: 200px;
}

    #regionSuggestions li {
        padding: 5px;
        cursor: pointer;
    }

        #regionSuggestions li:hover {
            background-color: #f0f0f0;
        }

#municipalitySuggestions {
    list-style-type: none;
    padding-left: 0;
    border: 1px solid #ccc;
    max-height: 100px;
    overflow-y: auto;
    width: 200px;
}

#municipalitySuggestions li {
    padding: 5px;
    cursor: pointer;
}

        #municipalitySuggestions li:hover {
            background-color: #f0f0f0;
        }
#progress-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: auto;
}
.progress-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    padding: 1rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.progress-item:last-child {
    border-bottom: none;
}

.item-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.circle-done {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #2d9cdb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d9cdb;
    font-size: 12px;
    flex-shrink: 0;
/*    font-size: 18px;*/
}

.circle-todo, .circle-not-started {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 12px;
    flex-shrink: 0;
    line-height: 1;
}

.status-tag {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 10px;
    font-weight: bold;
}

.done {
    /*background-color: #f0f2f5;
    color: #555;*/
    background-color: #d4edda;
    color: #155724;
}

.todo {
    background-color: #d1ecf1;
    color: #0c5460;
}
.not-started {
    background: #f8d7da;
    color: #721c24;
}
.not-required {
    background: #e2e3e5;
    color: #6c757d;
}

.dropdown-arrow {
    font-size: 12px;
    color: #888;
    margin-left: 8px;
}

.DocStatus {
    display: none;
    border: none;
    border-bottom: 1px solid #ccc;
}

.buttons {
    display: flex;
}

.editIcon {
    float: right;
}

.progress {
    background: none;
    border: none;
    font-size: 16px;
}

.selectDrp {
    border-radius: 10px;
    width: 100%;
    border: none;
    font-size: 16px;
    padding: 5px;
    background: transparent;
    display: none;
}

.distance {
    display: flex;
    gap: 20px;
}

#deleteJobPreference {
    display: none;
    cursor: pointer;
    color: red;
}

.hidden-cont {
    display: none;
}

.input-field {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgb(204, 204, 204) !important;
    font-size: 16px;
    color: #333;
    padding: 5px;
    background: transparent;
}

#personalInfo {
    width: 100%;
    display: none;
}

.personalDet {
    padding: 0 5% !important;
    width: 100%;
}

.info {
    width: 85%;
    margin-left: 2%;
}

.profile-image-container {
    position: relative;
    /* width: 15%;*/
    height: 100px;
}

#profileImage {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}

#imageEditIcon {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: white;
    color: #333;
    border-radius: 50%;
    padding: 5px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    display: none; /* Hidden initially */
}
#imageRemoveIcon {
    position: absolute;
    /*bottom: 5px;*/
    right: 5px;
    background: white;
    color: #333;
    border-radius: 50%;
    padding: 5px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    display: none; /* Hidden initially */
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh; /* Add a max height */
    overflow-y: auto; /* Scroll if content is long */
    margin: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.modal-btn {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.modal-content h3 {
    margin-top: 0;
}

.skill-perk-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 8px 0;
}

    .skill-perk-item input[type="checkbox"] {
        margin-right: 10px;
    }

.rank-input {
    width: 50px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
}

    .close-btn:hover {
        color: #000;
    }

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
    padding: 3px 0;
}

.modal-body {
    padding: 15px 20px;
    overflow-y: auto;
    flex: 1;
}

.modal-footer {
    padding: 10px 20px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    background-color: #fafafa;
}

.modal-header,
.modal-footer,
.search-box {
    padding: 15px 20px;
    z-index: 1;
    position: relative;
}

.login-container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.login-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    /*  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05); */
    text-align: center;
}

    .login-card h1 {
        margin-bottom: 10px;
    }

    .login-card p {
        color: #555;
        margin-bottom: 25px;
    }

form {
    display: flex;
    flex-direction: column;
    text-align: left;
}

label {
    margin-bottom: 5px;
    font-weight: 400;
}

input {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    font-size: 15px;
}

button {
    padding: 10px;
    background-color: #1485ba;
    color: white;
    border: none;
    border-radius: 8px !important;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

    button:hover {
        background-color: #1bb1f8;
    }

.login-button {
    margin-top: 10px;
    border: none;
    border-radius: 8px;
}

#self-register {
    padding: 12px;
    background-color: #03ad98 !important;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
    margin-top: 10px;
}

    #self-register:hover, #self-register:focus {
        background-color: #04e6ca !important;
    }

.actions {
    align-self: center;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

    .actions a {
        margin-left: 5px;
        color: #1485ba;
        text-decoration: none;
    }

        .actions a:hover {
            text-decoration: underline;
        }

.perk-category {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 6px;
}

.category-header {
    background-color: #f0f0f0;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}

.category-items {
    padding: 10px;
    display: none;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    display: none;
}

.error-message {
    background-color: #edc9c9;
    color: red;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    display: none;
}

.error {
    border: 1px solid red !important;
}

.file-error {
    border: 1px solid red !important;
}

.skill-perk-item {
    margin-bottom: 8px;
}

.main-container {
    display: flex;
    gap: 20px;
}

.sidebar-menu {
    margin-top: 20px;
    width: 350px;
    background-color: #f0f4f8;
    padding: 15px;
    border: solid 1px #d0d6dd;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 10px;
}

    .sidebar-menu ul {
        list-style-type: none;
        padding: 0;
    }

        .sidebar-menu ul li {
            margin-bottom: 10px;
            height: 36px;
        }

            .sidebar-menu ul li a {
                text-decoration: none;
                color: #434b54;
                font-weight: bold;
            }

                .sidebar-menu ul li a:hover {
                    text-decoration: underline;
                }
.sidebar-menu-profile {
    margin-top: 20px;
    width: 400px;
    background-color: #f0f4f8;
    padding: 15px;
    border: solid 1px #d0d6dd;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 10px;
}

    .sidebar-menu-profile nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .sidebar-menu-profile nav ul li {
            margin-bottom: 10px;
            height: 36px;
            min-height: 45px;
        }

            .sidebar-menu-profile nav ul li a {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 14px 12px;
                color: #434b54;
                text-decoration: none;
                font-weight: bold;
                font-size: 15px;
                transition: background 0.2s;
            }

                .sidebar-menu-profile nav ul li a:hover {
                    text-decoration: underline;
                }
.main-content {
    flex: 1;
}

.prefer-location {
    display: flex;
    gap: 25px;
}

.distance-options {
    padding: 5px;
}

.nav-icon {
    padding: 12px;
    text-align: center;
}

.active-nav {
    border-radius: 1px;
    background-color: #ddf4fe;
}

    .active-nav a {
        color: #22697e !important;
    }

.applicant-status {
    position: absolute;
    left: 0%; /* 52%;*/
    transform: translateX(-50%);
    background-color: #d2f4ef; /*#d1f5ec;*/
    color: #0f766e !important;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px !important;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.select-border {
    border-bottom: 1px solid rgb(204,204,204) !important;
    border-radius: 10px;
}

.status-drp {
    display: flex;
    gap: 15px;
}

.name-det {
    display: flex;
    gap: 5px;
}

.experience-status {
    color: #08556c;
    font-size: 14px;
    font-weight: bold;
}

.badge {
    padding: 5px 10px;
    border-radius: 50% !important;
    top: 10px;
    position: absolute;
    background-color: #ff2626;
}

.notification-badge {
    position: relative;
    top: -70px;
    left: 50px;
    background-color: red;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
    line-height: 1;
}

.disabled-btn {
    cursor: not-allowed !important;
}

/*.sidebar-menu {
    margin-top: 20px;*/
/*  width: 350px;*/
/*background-color: #f0f4f8;
    padding: 15px;
    border: solid 1px #d0d6dd;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 10px;
}

.sidebar-menu ul {
    list-style-type: none;
    padding: 0;
}

.sidebar-menu ul li {
    margin-bottom: 10px;
    height: 36px;
}

.sidebar-menu ul li a {
    text-decoration: none;
    color: #434b54;
    font-weight: bold;
}

.sidebar-menu ul li a:hover {
    text-decoration: underline;
}*/

.dashboard-profile {
    margin-left: 34%;
    margin-block: auto;
    font-weight: bold;
    color: #a1a5a9;
}

.profile-style {
    text-decoration: none;
    color: black;
}

.upload-form {
    /*display: inline-flex;
    flex-flow:column;*/
    gap: 20px;
}

.file-group {
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 20px;
}

.upload-brdr {
    border: none !important;
}

.file-group label {
    margin-left: 15px;
    width: 20%;
}
/*.documents
{
    display:flex;
    gap:20px;
}*/
.file-group-upload {
    margin-top: 20px;
}

.upload-container {
    background: #fff;
    padding: 25px;
    max-width: 800px;
    margin: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
}

    .upload-container h2 {
        margin-bottom: 20px;
        font-size: 32px;
        text-align: center;
    }

.file-input-group {
    margin-bottom: 15px;
}

.file-input-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.input-fileType {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fafafa;
}

.file-list {
    margin-top: 20px;
    padding-left: 15px;
}

    .file-list li {
        font-size: 14px;
        margin-bottom: 5px;
        color: #333;
    }

.btns {
    display: flex;
    gap: 20px;
    float: right;
    margin-top: -35px;
}

#display-message {
    font-size: 16px;
    margin-bottom: 10px;
}

.clickable {
    color: #007bff;
    cursor: pointer;
    text-decoration: underline;
}

.table-responsive {
    margin-top: 20px;
    background: #fff;
}

.document-table {
    width: 100%;
    border-collapse: collapse;
    min-width: auto;
}

    .document-table th, .document-table td {
        padding: 14px 16px;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
        font-size: 14px;
        color: #444;
    }

    .document-table th {
        background-color: #f9fafb;
        color: #333;
        font-weight: 600;
    }

.action-icon {
    cursor: pointer;
    font-size: 16px;
    margin-right: 8px;
    transition: color 0.2s;
}

    .action-icon.edit:hover {
        color: #1485ba;
    }

    .action-icon.delete:hover {
        color: red;
    }

.hidden-input {
    display: none !important;
}

/*.doc-actions {
    display: flex;
    gap: 10px;
}*/

.attachment i {
    margin-right: 8px;
    font-size: 16px;
}

.attachment a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.attch-brdr {
    border-top: 1px solid white;
    gap: 0px !important;
}

.link-clr {
    color: white;
}

.rank-error {
    border-color: red;
}

.side-links {
    display: flex;
    gap: 20px;
}

.notify-me {
    display: flex;
    gap: 0px;
    margin: 14px 0px 0px 10px;
}

.notify-me-main {
    position: relative;
    left: 14%;
}

.income-div {
    display: flex;
    gap: 10px;
}

.incomeDrp {
    width: 100% !important;
}

.read-income {
    display: flex;
    gap: 15px;
}

.no-skill-incentive {
    margin-top: 10px;
    margin-left: 2%;
}

.profile-content {
    max-width: 80vh;
}

.dashboard-document {
    margin-left: 32%;
}

.previewbtn-physician {
    border: 2px solid #98a5b3;
    color: #202428;
    background-color: #f2f4f7;
}

.profile-prgrss {
    box-shadow: none;
    background-color: #d2f4ed;
    padding: 1px;
}

.profile-prgrss-content {
    margin-left: 20px;
    margin-top: 10px;
}

.about-job-display {
    white-space: pre-line;
}

#additionalInfo {
    white-space: pre-line;
}

.welcome-popup-btn {
    display: flex;
    gap: 30px;
}

.registration-label {
    margin-top: 15px;
}

.email-container {
    max-width: 600px;
    margin: 40px auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.cta-button {
    display: inline-block;
    background-color: #007bff;
    color: #fff !important;
    text-decoration: none;
    padding: 12px 20px;
    margin-top: 25px;
    border-radius: 5px;
    font-size: 16px;
}

.footer-email {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 40px;
}

.my-profile {
    font-size: 12px;
    text-align: center;
    color: #6a7481;
}

.profile-menu-status {
    font-size: 12px;
    color: #2cbaab;
    font-weight: bold;
    text-align: center;
}

:root {
    --complete: #28a745; /* Green = success */
    --incomplete: #ffc107; /* Amber = warning */
    --not-started: #6c757d; /* Gray = dormant */
}

.staus-badge {
    width: 26%;
    margin-left: 25px;
    padding: 6px 7px;
    border-radius: 999px;
    font-size: 11px;
    color: #fff;
    float: right;
}

    .staus-badge.complete {
        /*background: var(--complete);*/
        background: linear-gradient(135deg, #00c853, #009624);
        box-shadow: 0 2px 6px rgba(0, 200, 83, 0.3);
    }

    .staus-badge.incomplete {
        /* background: var(--incomplete);*/
        background: linear-gradient(135deg, #ffb300, #ff8f00);
        box-shadow: 0 2px 6px rgba(255, 179, 0, 0.3);
    }

    .staus-badge.not-started {
        background: var(--not-started);
    }

.disabled-preview-btn {
    background-color: lightgray !important;
    cursor: not-allowed !important;
}

.matches-div {
    margin-top: 30px;
    margin-left: 35px;
}

.popup-confirm {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: none;
    z-index: 9999;
    text-align: center;
}

    .popup-confirm h4 {
        margin-top: 0;
    }

    .popup-confirm .popup-buttons {
        float: right;
        margin-top: 15px;
        display: flex;
        gap: 5px;
    }

    .popup-confirm button {
        padding: 6px 12px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

.btn-cancel {
    background: #ddd;
}

.btn-delete {
    background: #dc3545;
    color: #fff;
}

.selected-perks {
    margin: 0px 0px 10px 15px;
    padding: 10px;
    /* background-color: #f0f1f3;*/
    border-radius: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-height: 120px;
    overflow-y: auto;
}

.display-heading {
    margin-left: 22px;
    display: none;
}

.back-btn {
    display: inline;
    font-size: 34px;
    color: #014e66;
    font-weight: 600;
}

.error-msg {
    color: red;
}

.profile-preview-btn {
    float: right;
    margin-top: -80px;
}

.badage-incentives {
    background: #007b8f;
    color: white;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
    text-align: center;
    width: 25px;
    height: 25px;
}

.warning-message {
    display: none;
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 10px;
    border-radius: 4px;
    margin: 15px 0;
    font-size: 14px;
}

.selected-summary {
    margin-left: 20px;
    height: 600px;
    overflow: auto;
    /*background: #f9f9f9;*/
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
}

table.incentive-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

    table.incentive-table th,
    table.incentive-table td {
        padding: 8px 12px;
        border-bottom: 1px solid #ddd;
        text-align: left;
        vertical-align: top;
        word-wrap: break-word;
    }

    table.incentive-table th {
        background-color: #f1f1f1;
        font-weight: bold;
    }

    table.incentive-table td {
        background-color: #fff;
    }

        table.incentive-table th:nth-child(1),
        table.incentive-table td:nth-child(1) {
            width: 75%;
        }

        table.incentive-table th:nth-child(2),
        table.incentive-table td:nth-child(2) {
            width: 25%;
            text-align: center;
        }

.btn-view-summary {
    background: #444;
    color: #fff;
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    margin-top: 10px;
    cursor: pointer;
    width: 150px;
}

.highlight-count {
    background: aqua;
}

.info-share-on-off {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #d1f5ec;
    padding: 10px 10px;
    border-radius: 10px;
    /* border: 1px solid #d1f1ec;*/
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-show-label {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.info-switch {
    margin-left: 20px;
    position: relative;
    display: inline-block;
    width: 42px;
    height: 24px;
}

    .info-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: default;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: 0.4s;
        border-radius: 50%;
    }

.info-switch input:checked + .slider {
    background-color: #28a745;
}

    .info-switch input:checked + .slider:before {
        transform: translateX(18px);
    }

.enable-switch {
    cursor: pointer !important;
}

.profile-desc-div {
    text-align: left;
}

.job-pref-section {
    margin-top: 10px;
}

.read-more-less {
    font-weight: 600;
    text-decoration: auto;
}

.search-text {
    width: 96%;
    padding: 5px;
    margin: 10px 0px 10px 4px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    font-size: 14px;
}

.clear-search {
    position: absolute;
    right: 15px;
    top: 15px;
    /*transform: translateY(-35%);*/
    cursor: pointer;
    font-size: 16px;
    color: #999;
    display: none;
}

.no-results-found {
    display: none;
    color: #f44336;
    font-style: italic;
    padding: 3px 10px;
    font-size: 14px;
}

.message-text-area {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
    height: 50px;
    white-space: pre-wrap;
}

.message-area {
    height: 100px !important;
    overflow: auto;
}

/* footer section */
.footer-area {
    background-color: black;
    padding: 15px 0px;
    /*color:white !important;*/
    /* display:none;*/
}

    .footer-area h6 {
        color: #fff;
        margin-bottom: 10px;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .footer-area a {
        color: #007bff;
        text-decoration: none;
        background-color: transparent;
    }

    .footer-area p {
        color: #777777;
    }

.single-footer-widget .footer-nav {
    list-style: none;
    padding: 0;
}

.footer-area .footer-nav li {
    margin-top: 8px;
}

    .footer-area .footer-nav li a {
        color: #777777;
    }

.address {
    list-style: none;
    padding: 0;
}

    .address li {
        margin-top: 8px;
        color: #777777;
    }

.pending-actions-label {
    font-size: 13px;
    color: #000;
    background-color: #39ff14; /* Fluorescent green */
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
    margin-left: 10px;
    animation: flash 0.6s ease-in-out infinite alternate;
}

.address-item {
    width: 32%;
}
.document-actions{
    font-size:16px !important;
    cursor:pointer;
}
#modal-delete-description{
    font-size:14px;
}
.sub-span {
    vertical-align: sub;
    font-size: 14px;
    color: #1485c0;
}
/*.front-top-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://randomuser.me/api/portraits/men/75.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(0.8);
    transform: scale(1.1);
    z-index: 0;
}*/
@media (max-width: 600px) {
    dialog {
        height: 100%;
        border-radius: 0;
    }

    .progress-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .status-container {
        margin-top: 0.5rem;
        margin-left: 6%;
    }
}
/* Media Queries for Responsiveness */
@media (max-width: 480px) {
    .card-sign {
        padding: 1rem;
        width: 100%;
        margin: 0 10px;
    }

    h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .card-sign {
        max-width: 90%;
    }
}

/* Ensure modal doesn't get pushed out of view when zoomed */
@media (min-width: 320px) and (max-width: 1024px) {
    .form-sign-container {
        padding: 0;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .card-sign {
        padding: 1.5rem;
        width: 100%;
        max-width: 95%;
        margin-top: 5vh; /* Add a bit of space from the top */
    }
}
@media (max-width: 500px) {
    .sidebar-menu-profile nav ul li a {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .profile-menu-status {
        align-self: flex-end;
    }
}
@media (max-width: 600px) {
    .progress-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .status-container {
        margin-top: 0.5rem;
        margin-left:6%;
    }
    
}