/**
 * Claude Custom CSS
 * @created 2026-01-13
 * @description All custom styles added by Claude
 */

/* COMMENT: Custom font-face declarations for Nearo and Helvetica Neue - Added: 2026-04-01 */
@font-face {
    font-family: "Nearo-SemBd";
    src: url("../hrportal-assets/fonts/website/Nearo-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Helvetica-Neue-r";
    src: url("../hrportal-assets/fonts/website/HelveticaNeue-Roman.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Helvetica-Neue-m";
    src: url("../hrportal-assets/fonts/website/HelveticaNeue-Medium.eot");
    src: url("../hrportal-assets/fonts/website/HelveticaNeue-Medium.eot") format("embedded-opentype");
    font-weight: 500;
    font-style: normal;
}

/* COMMENT: Global seeker dashboard fonts - titles and body text - Added: 2026-04-01 */
.formpanel h1,
.editprofilebox h1,
.userccount h1 {
    font-family: "Nearo-SemBd" !important;
    color: #00657d !important;
}

.formpanel,
.editprofilebox,
.userccount,
.formrow,
.formrow label,
.formrow .form-control {
    font-family: "Helvetica-Neue-r";
}

/* COMMENT: Remove extra bottom margin from blog page - Added: 2026-03-30 */
.blog.blog-page {
    margin-bottom: 0;
}

/* ============================================
   HR PERSONS PAGE STYLES
   ============================================ */
.hr-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.hr-page-header p {
    margin: 0;
    flex: 1;
}

.btn-add-new {
    background: #42a0ae !important;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn-add-new:hover {
    background: #f7cd61 !important;
    color: #333 !important;
}

.btn.btn-add-sm {
    background: #42a0ae !important;
    color: #fff !important;
    padding: 5px 12px !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none !important;
    width: auto !important;
    display: inline-block !important;
}

.btn.btn-add-sm:hover {
    background: #f7cd61 !important;
    color: #333 !important;
}

.btn.btn-add-sm i {
    font-size: 10px !important;
    margin-right: 3px;
}

/* HR Table Styles */
.hr-table {
    width: 100%;
    border-collapse: collapse;
}

.hr-table thead th {
    background: #42a0ae;
    color: #fff;
    padding: 12px 15px;
    font-weight: 500;
    font-size: 14px;
    text-align: left;
}

.hr-table tbody td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.hr-table tbody tr:hover {
    background: #f8f9fa;
}

/* Status Toggle Switch */
.status-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
}

input:checked+.slider {
    background-color: #42a0ae;
}

input:checked+.slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 26px;
}

.slider.round:before {
    border-radius: 50%;
}

.status-label {
    font-size: 12px;
    font-weight: 500;
}

.status-label.active {
    color: #28a745;
}

.status-label.inactive {
    color: #dc3545;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 8px;
}

.btn-edit {
    background: #42a0ae;
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 5px;
}

.btn-edit:hover {
    background: #368a96;
    color: #fff;
}

.btn-delete {
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 5px;
}

.btn-delete:hover {
    background: #c82333;
    color: #fff;
}

/* No Data Message */
.no-data-message {
    padding: 40px;
    color: #888;
}

.no-data-message i {
    font-size: 50px;
    color: #ddd;
    margin-bottom: 15px;
    display: block;
}

.no-data-message h5 {
    color: #333;
    margin-bottom: 10px;
}

/* ============================================
   MODAL STYLES (COMMON)
   ============================================ */
.modal .modal-header.bg-theme {
    background: linear-gradient(135deg, #42a0ae, #368a96);
    color: #fff;
}

.modal .modal-header.bg-theme .btn-close {
    filter: brightness(0) invert(1);
}

.modal .btn-theme-primary {
    background: #42a0ae;
    border-color: #42a0ae;
    color: #fff;
    transition: all 0.3s ease;
}

.modal .btn-theme-primary:hover {
    background: #f7cd61;
    border-color: #f7cd61;
    color: #333;
}

.modal .btn-theme-secondary {
    background: #dc3545;
    border-color: #dc3545;
    color: #fff;
    transition: all 0.3s ease;
}

.modal .btn-theme-secondary:hover {
    background: #000;
    border-color: #000;
}

.modal.show .modal-body {
    padding: 25px 20px;
    min-height: 200px;
}

/* ============================================
   CALENDAR VIEW STYLES
   ============================================ */
.view-toggle-section {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.view-toggle {
    display: flex;
    background: #f0f0f0;
    border-radius: 8px;
    padding: 4px;
}

.view-btn {
    padding: 8px 20px;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-btn:hover {
    color: #42a0ae;
}

.view-btn.active {
    background: #42a0ae;
    color: #fff;
}

.view-btn.active:hover {
    background: #f7cd61;
    color: #333;
}

/* Calendar Legend */
.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.legend-color.scheduled {
    background: #2196f3;
}

.legend-color.confirmed {
    background: #4caf50;
}

.legend-color.rescheduled {
    background: #ff9800;
}

.legend-color.completed {
    background: #9c27b0;
}

.legend-color.cancelled {
    background: #9e9e9e;
}

/* ============================================
   INTERVIEW CARD STYLES
   ============================================ */
.interview-card {
    display: flex;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
    gap: 16px;
    transition: all 0.2s;
    margin-bottom: 15px;
}

.interview-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.interview-date-box {
    min-width: 80px;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    color: #fff;
}

.interview-date-box .day {
    font-size: 28px;
    font-weight: 700;
    display: block;
}

.interview-date-box .month {
    font-size: 14px;
    text-transform: uppercase;
}

.interview-date-box .time {
    font-size: 12px;
    margin-top: 4px;
    display: block;
    opacity: 0.9;
}

/* ============================================
   EMPTY STATE STYLES
   ============================================ */
.empty-state-card {
    text-align: center;
    padding: 80px 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.empty-state-card .empty-state-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-state-card .empty-state-icon i {
    font-size: 50px;
    color: #adb5bd;
}

.empty-state-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.empty-state-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.empty-state-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #42a0ae;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.empty-state-btn:hover {
    background: #f7cd61;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 160, 174, 0.3);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 768px) {
    .hr-page-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .action-buttons {
        flex-direction: column;
    }

    .interview-card {
        flex-direction: column;
    }

    .view-toggle-section {
        justify-content: center;
    }

    .empty-state-card {
        padding: 60px 20px;
    }

    .empty-state-card .empty-state-icon {
        width: 100px;
        height: 100px;
    }

    .empty-state-card .empty-state-icon i {
        font-size: 40px;
    }
}

/* ============================================
   FORM VALIDATION STYLES
   ============================================ */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545 !important;
    background-image: none;
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

/* ============================================
   SWEETALERT CUSTOM STYLES
   ============================================ */
.swal-modal {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.swal-title {
    color: #333;
    font-size: 20px;
    font-weight: 600;
}

.swal-text {
    color: #666;
    font-size: 14px;
    text-align: center !important;
}

.swal-icon--warning {
    border-color: #f7cd61;
}

.swal-icon--warning__body,
.swal-icon--warning__dot {
    background-color: #f7cd61;
}

.swal-button--cancel {
    background: #dc3545;
    color: #fff;
    border-radius: 6px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.swal-button--cancel:hover {
    background: #F4F4F4 !important;
    color: #000 !important;
}

.swal-button--confirm {
    background: #42a0ae;
    color: #fff;
    border-radius: 6px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.swal-button--confirm:hover {
    background: #f7cd61 !important;
    color: #333 !important;
}

.swal-button:focus {
    box-shadow: none;
}

.swal-footer {
    text-align: center;
}

/* Success popup */
.swal-icon--success {
    border-color: #42a0ae;
}

.swal-icon--success__line {
    background-color: #42a0ae;
}

.swal-icon--success__ring {
    border-color: rgba(66, 160, 174, 0.3);
}

/* ============================================
   FEATURED CANDIDATE BADGE STYLES
   Added: 2026-01-14
   ============================================ */
/* Name wrapper for badge below name */
.name-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Featured badge below name */
.featured-badge-name {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
    width: fit-content;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
}

.featured-badge-name i {
    font-size: 9px;
    margin-right: 3px;
}

/* ============================================
   JOB ALERT MODAL BUTTON STYLES
   Added: 2026-01-14
   ============================================ */
.job-alert-btn-cancel {
    background: #dc3545;
    color: #fff;
    border-radius: 6px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
}

.job-alert-btn-cancel:hover {
    background: #F4F4F4 !important;
    color: #000 !important;
}

.job-alert-btn-submit {
    background: #42a0ae;
    color: #fff;
    border-radius: 6px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
}

.job-alert-btn-submit:hover {
    background: #f7cd61 !important;
    color: #333 !important;
}

/* ============================================
   NO JOBS FOUND STYLES
   Added: 2026-01-14
   ============================================ */
.no-jobs-found {
    text-align: center;
    padding: 80px 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin: 0;
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.no-jobs-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(66, 160, 174, 0.1), rgba(54, 138, 150, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-jobs-icon i {
    font-size: 40px;
    color: #42a0ae;
}

.no-jobs-found h4 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.no-jobs-found p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* ============================================
   AI JOB SUGGESTIONS STYLES
   Added: 2026-01-14
   ============================================ */
.ai-suggest-btn {
    background: linear-gradient(135deg, #42a0ae, #368a96);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 160, 174, 0.3);
}

.ai-suggest-btn:hover {
    background: linear-gradient(135deg, #f7cd61, #e5b84a);
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 205, 97, 0.4);
}

.ai-suggest-btn i {
    margin-right: 8px;
}

.ai-results-container {
    text-align: center;
}

.ai-results-container h5 {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.ai-results-container h5 i {
    color: #f7cd61;
    margin-right: 8px;
}

.suggestion-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.suggestion-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 2px solid #42a0ae;
    color: #42a0ae;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.suggestion-chip:hover {
    background: #42a0ae;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 160, 174, 0.3);
}

.suggestion-chip i {
    font-size: 12px;
}

.job-count-badge {
    background: #28a745;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 5px;
}

.job-count-badge.no-jobs {
    background: #dc3545;
}

/* Pulse animation for AI searching */
.fa-pulse {
    animation: fa-pulse 1.5s ease-in-out infinite;
}

@keyframes fa-pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* AI Results icon styling */
.ai-results-container .no-jobs-icon {
    background: linear-gradient(135deg, rgba(247, 205, 97, 0.2), rgba(247, 205, 97, 0.1));
}

.ai-results-container .no-jobs-icon i {
    color: #f7cd61;
}

/* ============================================
   GLOBAL PAGINATION STYLES
   Updated: 2026-03-30 - Matched to screenshot design (square buttons, red border on active)
   ============================================ */
.pagination {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: center;
}

.pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
}

.pagination .page-item .page-link:hover {
    background: #f5f5f5;
    border-color: #999;
}

.pagination .page-item.active .page-link {
    background: #fff;
    border-color: #c0392b;
    color: #333;
    font-weight: 600;
}

.pagination .page-item.disabled .page-link {
    background: #f9f9f9;
    color: #ccc;
    cursor: not-allowed;
    border-color: #eee;
}

/* ============================================
   RECOMMENDED JOBS VIEW DETAILS BUTTON
   Added: 2026-01-16
   ============================================ */
.btn-view {
    transition: all 0.3s ease !important;
}

.btn-view:hover {
    background: #f7cd61 !important;
    color: #333 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================
   COMPANY DASHBOARD PAGE STYLES
   Added: 2026-02-23
   ============================================ */
.dashboard-welcome-heading {
    margin-bottom: 30px;
}

.dashboard-welcome-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #42a0ae;
    font-style: italic;
    margin: 0;
}

.dashboard-cards-grid {
    margin: 0 -10px;
}

.dashboard-card {
    background: #f8f8f8;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.dashboard-card-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
}

.dashboard-card-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.dashboard-card-title-row h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.dashboard-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #f7cd61;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.dashboard-card-body p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: left !important;
}

.dashboard-card-btn {
    display: inline-block;
    background: #c0392b;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.dashboard-card-btn:hover {
    background: #a93226;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(192, 57, 43, 0.3);
}

@media (max-width: 768px) {
    .dashboard-welcome-heading h2 {
        font-size: 24px;
    }

    .dashboard-card-body {
        padding: 20px 18px;
    }

    .dashboard-card-title-row h4 {
        font-size: 16px;
    }
}

/* ============================================
   CV SECTION EMPTY STATE STYLES
   Added: 2026-02-24
   For build-resume page when no data exists
   ============================================ */
/* COMMENT: Remove shadow/border, reduce spacing on newcvcard - Updated: 2026-04-01 */
.newcvcard {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    border: none !important;
    padding: 5px 0 !important;
    margin-bottom: 5px !important;
}

/* COMMENT: Updated dashed border to smaller dots, reduced padding, max-width - Updated: 2026-04-01 */
.cv-empty-state {
    text-align: center;
    padding: 20px 20px;
    border: 1px dashed #ccc;
    border-radius: 10px;
    background: #fff;
    max-width: 850px;
}

.cv-empty-state-heading {
    font-size: 22px;
    font-weight: 400;
    color: #000;
    margin-bottom: 8px;
    font-family: "Helvetica-Neue-m";
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cv-empty-state-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #42a0ae;
    color: #fff !important;
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cv-empty-state-plus:hover {
    background: #368a96;
    color: #fff !important;
}

.cv-empty-state-text {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    margin-bottom: 12px;
    font-family: "Helvetica-Neue-m";
}

.cv-empty-state-subtext {
    font-size: 18px;
    font-family: "Helvetica-Neue-r";
    color: #898989;
    margin: 0;
    font-style: normal;
}

/* COMMENT: Data container inside empty state card - keeps design consistent - Added: 2026-02-24 */
.cv-empty-state-data {
    text-align: left;
    margin-top: 15px;
}

/* COMMENT: Sidebar nav styling to match reference design - Updated: 2026-04-02 */
/* COMMENT: Sticky sidebar with full height - Updated: 2026-04-08 */
html {
    overflow-x: hidden !important;
}

.dahboardalign .company-sidebar {
    /* position: sticky !important; */
    /* top: 20px !important; */
    /* align-self: flex-start !important; */
    min-height: calc(100vh - 195px);
    max-height: calc(100vh - 195px);
    overflow: hidden;
    position: fixed;
    top: 175px;
    width: 280px;
    z-index: 9999;
    /* -webkit-transition: -webkit-transform 0.3s ease-in-out, width 0.3s ease-in-out;
    -webkit-transition: width 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, width 0.3s ease-in-out; */
    transition: transform 0.3s ease-in-out, width 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    background-color: #F8F8F8;
    border-radius: 17px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    padding: 0px 0px 0px 0px;
}

.dahboardalign .company-sidebar .main-sidebar{
    top: unset;
}

.listpgWraper .c-sidebar-content {
    background-color: white;
    border-radius: 5px;
    overflow: auto;
    height: 100%;
    min-height: initial;
    padding: 40px 30px 50px 0px;
    margin: 0px 0px 0px auto;
    width: calc(100% - 280px - 60px);
    z-index: 98;
    -webkit-transition: margin 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: margin 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.usernavwrap {
    background: #F8F8F8 !important;
    border-radius: 17px !important;
}

.main-sidebar .sidebar {
    padding: 30px 15px 64px 15px !important;
}

.main-sidebar .sidebar>ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* COMMENT: All sidebar icons same grey color - Updated: 2026-04-08 */
.usernavwrap.main-sidebar .sidebar ul.usernavdash li a figure img,
.usernavwrap.main-sidebar .sidebar ul.usernavdash .job-posts-submenu li a img {
    filter: brightness(0) invert(0.4) !important;
}

.main-sidebar .sidebar>ul>li {
    margin: 0 0 10px 0 !important;
    border-radius: 11px !important;
    position: relative !important;
}

.main-sidebar .sidebar>ul>li>a {
    color: #000 !important;
    font-size: 1.125rem !important;
    font-weight: 400 !important;
    letter-spacing: -0.5px !important;
    /* COMMENT: Removed capitalize - sidebar text shows as written in blade - Updated: 2026-04-08 */
    text-transform: none !important;
    padding: 0px 30px 0px 30px !important;
    height: 50px !important;
    gap: 13px !important;
    display: flex !important;
    align-items: center !important;
    border-left: 5px solid transparent !important;
    white-space: initial !important;
    overflow: initial !important;
    text-decoration: none !important;
}

.main-sidebar .sidebar>ul>li:not(.active):hover {
    background: #EDEDED !important;
}

.main-sidebar .sidebar>ul>li.active>a {
    background: rgba(0, 0, 0, 0.1) !important;
    border-radius: 11px !important;
    color: #000 !important;
}

.usernavdash li a:hover {
    color: #000 !important;
    text-decoration: none !important;
}

.usernavdash li.active a {
    color: #000 !important;
}

.usernavdash li.active a i,
.usernavdash li a:hover i {
    color: #000 !important;
}

/* COMMENT: Sidebar dropdown sub-menu items - compact styling - Updated: 2026-04-02 */
.job-posts-submenu li {
    margin: 0 !important;
    padding: 0 !important;
    border-top: none !important;
}

.job-posts-submenu li a {
    height: 36px !important;
    padding: 0 15px !important;
    font-size: 16px !important;
    color: #000 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
}

.job-posts-submenu li a:hover {
    background: #f0f0f0;
    border-radius: 8px;
}

.job-posts-submenu li.active a {
    background: #f0f0f0;
    border-radius: 8px;
}

/* COMMENT: Empty state button with hover - Added: 2026-04-02 */
.empty-state-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #42A0AE;
    color: #fff;
    text-decoration: none;
    border-radius: 13px;
    font-weight: 500;
    font-size: 18px;
    font-family: 'Helvetica-Neue-m';
    width: fit-content;
    transition: 0.4s ease;
    border: none;
    outline: none;
    cursor: pointer;
}

.empty-state-btn:hover {
    background: #f7cd61;
    color: #000;
    text-decoration: none;
}

/* COMMENT: Fix modal body min-height causing extra space - Added: 2026-04-02 */
.modal.show .modal-body {
    min-height: unset !important;
}

/* COMMENT: Remove blue focus border/shadow from modal input fields - Added: 2026-04-02 */
.modal .form-control:focus {
    box-shadow: none !important;
    border-color: #ddd !important;
    outline: none !important;
}

/* COMMENT: Job Detail page - Remove outer border, fix width/padding, remove blank space - Added: 2026-03-03 */
.job-seeker-page .job-detail .right-side .post-grid .inner-grid {
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

.job-seeker-page .job-detail.job-grid {
    margin: 0 !important;
    padding: 0 !important;
}

.job-seeker-page .job-detail .post-grid {
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.job-seeker-page .job-detail .img-detail {
    flex-direction: row !important;
    text-align: left !important;
}

.job-seeker-page .job-detail .img-detail>div>.d-flex {
    flex-direction: row !important;
    align-items: flex-start !important;
}

.job-seeker-page .job-detail .img-detail figure {
    width: 70px !important;
    height: 70px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}

.job-seeker-page .job-detail .img-detail .txt {
    margin-top: 0 !important;
    padding: 0 !important;
}

.job-seeker-page .job-detail .img-detail .txt ul {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 5px 16px !important;
}

.job-seeker-page .job-detail .img-detail .txt ul li {
    display: inline-flex !important;
    align-items: center !important;
}

@media (max-width: 576px) {
    .job-seeker-page .job-detail .img-detail {
        flex-direction: column !important;
        text-align: center !important;
    }

    .job-seeker-page .job-detail .img-detail figure {
        margin: 0 auto !important;
    }

    .job-seeker-page .job-detail .img-detail .txt ul {
        justify-content: center !important;
    }
}

/* COMMENT: Reusable theme button class — teal background, white text, rounded large padding, yellow hover. Drop the class on any button/anchor to get the same look site-wide. - Added: 2026-05-01 */
/* COMMENT: Selector chained `.btn-vinay-btn.btn-vinay-btn.btn-vinay-btn` boosts specificity (0,3,0) above page-scoped overrides like `.my_alert_dash .userdashbox button` (0,2,1) so this class wins everywhere without needing to edit those page rules. - Updated: 2026-05-01 */
.btn-vinay-btn,
.btn-vinay-btn.btn-vinay-btn.btn-vinay-btn {
    background: #42A0AE !important;
    color: #fff !important;
    padding: 14px 55px !important;
    margin-top: 15px !important;
    margin-bottom: 15px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    font-family: 'Helvetica-Neue-b' !important;
    border: none !important;
    cursor: pointer !important;
    text-align: center !important;
    display: inline-block !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    line-height: 1.4 !important;
}
/* COMMENT: Hover selector also chained x3 so its specificity (0,3,1) beats the base chained selector (0,3,0). Without this, base wins on hover and color stays teal. - Updated: 2026-05-01 */
.btn-vinay-btn:hover,
.btn-vinay-btn:focus,
.btn-vinay-btn.btn-vinay-btn.btn-vinay-btn:hover,
.btn-vinay-btn.btn-vinay-btn.btn-vinay-btn:focus {
    color: #000000 !important;
    background-color: #f7cd61 !important;
    border: none !important;
    text-decoration: none;
    outline: none !important;
}

/* COMMENT: Popup variant of theme button — same look as .btn-vinay-btn but with reduced horizontal padding (14px 30px) for use inside modal/popup footers where space is tight. - Added: 2026-05-01 */
.btn-vinay-btn-popup,
.btn-vinay-btn-popup.btn-vinay-btn-popup.btn-vinay-btn-popup {
    background: #42A0AE !important;
    color: #fff !important;
    padding: 14px 30px !important;
    margin-top: 15px !important;
    margin-bottom: 15px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    font-family: 'Helvetica-Neue-b' !important;
    border: none !important;
    cursor: pointer !important;
    text-align: center !important;
    display: inline-block !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    line-height: 1.4 !important;
}
.btn-vinay-btn-popup:hover,
.btn-vinay-btn-popup:focus,
.btn-vinay-btn-popup.btn-vinay-btn-popup.btn-vinay-btn-popup:hover,
.btn-vinay-btn-popup.btn-vinay-btn-popup.btn-vinay-btn-popup:focus {
    color: #000000 !important;
    background-color: #f7cd61 !important;
    border: none !important;
    text-decoration: none;
    outline: none !important;
}

/* COMMENT: Cancel variant of popup button — same compact size as .btn-vinay-btn-popup but light gray bg + black text, with red bg + white text on hover. - Added: 2026-05-01 */
.btn-vinay-btn-popup-cancel,
.btn-vinay-btn-popup-cancel.btn-vinay-btn-popup-cancel.btn-vinay-btn-popup-cancel {
    background-color: #F4F4F4 !important;
    color: #000 !important;
    padding: 14px 30px !important;
    margin-top: 15px !important;
    margin-bottom: 15px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    font-family: 'Helvetica-Neue-b' !important;
    border: none !important;
    outline: none !important;
    cursor: pointer !important;
    text-align: center !important;
    display: inline-block !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    line-height: 1.4 !important;
}
.btn-vinay-btn-popup-cancel:hover,
.btn-vinay-btn-popup-cancel:focus,
.btn-vinay-btn-popup-cancel.btn-vinay-btn-popup-cancel.btn-vinay-btn-popup-cancel:hover,
.btn-vinay-btn-popup-cancel.btn-vinay-btn-popup-cancel.btn-vinay-btn-popup-cancel:focus {
    background-color: #c24042 !important;
    color: #fff !important;
    border: none !important;
    text-decoration: none;
    outline: none !important;
}