.job-thumb-box_article .job-body .job-image-wrap {
    width: 50px;
    min-width: 50px;
    height: 50px;
  }

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 90;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    width: 320px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.modal_close_btn {
  position: absolute;
    top: 12px;
    right: 16px;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    color: #282d3b;
    font-size: 24px;
    cursor: pointer;
    z-index: 91;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
}

#copy-btn {
  border: 2px solid transparent;
    background: #f65129;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 25px;
    padding: 15px 20px;
}

.copy-message {
    display: none;
    color: green;
    margin-top: 10px;
}

/* Job image styles */
.job-image-wrap {
    border-radius: var(--border-radius-large);
    width: 80px;
    min-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* TimeSlot public card styles moved to timeslot_public_card.css */

.article_card_text,
.article_card_text .text-900,
.article_card_text .text-800,
.article_card_text .text-700,
.article_card_text .text-600,
.article_card_text .text-500,
.article_card_text .text-400,
.article_card_text .text-primary,
.article_card_text a,
.article_card_text h1,
.article_card_text h2,
.article_card_text h3,
.article_card_text h4,
.article_card_text h5,
.article_card_text p,
.article_card_text span,
.article_card_text small,
.article_card_text li,
.article_card_text div {
    color: #282d3b !important;
}

/* Push notification toggle in notification dropdown */
.notification-push-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.notification-push-toggle .push-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 6px 0;
}

.notification-push-toggle .toggle-switch_stngs {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.notification-push-toggle .toggle-switch_stngs input {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
    margin: 0;
}

.notification-push-toggle .toggle-slider_stngs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .3s;
    border-radius: 24px;
}

.notification-push-toggle .toggle-slider_stngs:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

.notification-push-toggle .toggle-switch_stngs input:checked + .toggle-slider_stngs {
    background-color: #3b82f6;
}

.notification-push-toggle .toggle-switch_stngs input:checked + .toggle-slider_stngs:before {
    transform: translateX(20px);
}

.notification-push-toggle .toggle-switch_stngs:active .toggle-slider_stngs:before {
    width: 22px;
}

.notification-push-toggle .toggle-switch_stngs:active input:checked + .toggle-slider_stngs:before {
    transform: translateX(16px);
}

/* Larger touch targets on small screens */
@media (max-width: 992px) {
    .notification-push-toggle .toggle-switch_stngs {
        width: 52px;
        height: 28px;
    }

    .notification-push-toggle .toggle-slider_stngs {
        border-radius: 28px;
    }

    .notification-push-toggle .toggle-slider_stngs:before {
        height: 22px;
        width: 22px;
        left: 3px;
        bottom: 3px;
    }

    .notification-push-toggle .toggle-switch_stngs input:checked + .toggle-slider_stngs:before {
        transform: translateX(24px);
    }

    .notification-push-toggle .push-label {
        font-size: 13px;
        padding: 8px 0;
    }
}