/**
 * Employer Dashboard Styles
 * For the employer dashboard interface
 */

/* Override theme constraints */
.entry-content,
.site-content,
.content-area {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Dashboard Wrapper */
.employer-dashboard-wrapper {
    display: flex;
    min-height: 100vh;
    padding: 50px 0 !important;
    width: 100% !important;
    margin: 0 auto;
    max-width: 1440px;
}

/* Sidebar */
.employer-sidebar {
    width: 280px;
    min-width: 280px;
    background: #fff;
    border-right: 1px solid #e0e0e0;
    padding: 30px 20px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    flex-shrink: 0;
}

.employer-profile-card {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 25px;
}

.employer-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    position: relative;
}

.employer-avatar img,
.employer-avatar-placeholder {
    width: 100%;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover;
}

.employer-avatar-placeholder {
    background: var(--e-global-color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
}

.employer-avatar-edit-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px !important;
    height: 32px;
    border-radius: 50% !important;
    background: var(--e-global-color-primary);
    color: white !important;
    border: 3px solid #fff !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 0 !important;
}

.employer-avatar-edit-btn:hover {
    background: var(--color-secondary);
    transform: scale(1.1);
}

.employer-avatar-edit-btn iconify-icon {
    font-size: 16px;
}

.employer-profile-card h5 {
    margin: 0 0 5px;
    color: var(--e-global-color-primary);
}

.employer-tagline {
    color: var(--e-global-color-text);
    font-size: 13px;
    margin: 0 0 15px;
}

/* Plan Badge */
.employer-plan-badge {
    margin: 15px 0;
}

.employer-plan-badge .plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-badge-beta {
    background: #f7931e;
    color: #fff;
}

.plan-badge-pro {
    background: var(--e-global-color-accent);
    color: #fff;
}

.plan-badge-basic {
    background: #4facfe;
    color: #fff;
}

.plan-badge-none {
    background: #e0e0e0;
    color: var(--e-global-color-text);
}

/* Locked Features */
.employer-feature-locked {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff3e0;
    color: #e65100;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #ffe0b2;
}

.employer-feature-locked iconify-icon {
    font-size: 18px;
}

.employer-feature-locked a {
    color: #e65100;
    font-weight: 600;
    text-decoration: underline;
}

.employer-feature-locked a:hover {
    color: #bf360c;
}

.employer-stats {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

.employer-stat {
    text-align: center;
}

.employer-stat .stat-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--e-global-color-primary);
}

.employer-stat .stat-label {
    display: block;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation Menu */
.employer-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.employer-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--e-global-color-text);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    position: relative;
    font-weight: 500;
}

.employer-menu-item iconify-icon {
    font-size: 22px;
}

.employer-menu-item:hover {
    background: #f5f5f5;
    color: var(--e-global-color-primary);
}

.employer-menu-item.active {
    background: var(--e-global-color-primary);
    color: white;
}

.employer-logout {
    margin-top: auto;
    color: #f44336;
}

.employer-logout:hover {
    background: #ffebee;
    color: #d32f2f;
}

/* Main Content */
.employer-main-content {
    flex: 1;
    padding-left: 30px;
    overflow-y: auto;
    max-width: calc(100vw - 280px);
    width: 100%;
    padding-right: 10px;
}

.employer-tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.employer-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.employer-header {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

.employer-header.Header-with-action {
    flex-direction: row;
    align-items: center;
}

.employer-dashboard-wrapper h1,
.employer-dashboard-wrapper h2,
.employer-dashboard-wrapper h3,
.employer-dashboard-wrapper h4,
.employer-dashboard-wrapper h5,
.employer-dashboard-wrapper h6 {
    color: var(--e-global-color-primary);
}

.employer-header h3 {
    margin: 0;
}

.employer-header p {
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
    color: var(--e-global-color-text);
    margin: 0;
}

/* Stats Grid */
.employer-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.employer-stat-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s;
}

.employer-stat-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.employer-stat-card .stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.employer-stat-card .stat-info h4 {
    margin: 0 0 4px;
    font-size: 26px;
}

.employer-stat-card .stat-info p {
    margin: 0;
    color: var(--e-global-color-text);
    font-size: 14px;
}

/* Quick Actions */
.employer-quick-actions {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.employer-quick-actions h2 {
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.action-card {
    padding: 25px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.action-card:hover {
    border-color: var(--e-global-color-primary);
    background: #f5f9ff;
    transform: translateY(-4px);
}

.action-card iconify-icon {
    font-size: 48px;
    color: var(--e-global-color-primary);
    margin-bottom: 15px;
}

.action-card h5 {
    margin: 0 0 8px;
}

.action-card p {
    margin: 0;
    color: var(--e-global-color-text);
    font-size: 14px;
}

.action-card-locked {
    opacity: 0.7;
    cursor: not-allowed;
    border: 2px dashed #e0e0e0;
    background: #fafafa;
}

.action-card-locked:hover {
    border-color: #e0e0e0;
    background: #fafafa;
    transform: none;
}

.action-card-locked iconify-icon {
    color: #999;
}

.action-card-locked p a {
    color: var(--e-global-color-primary);
    font-weight: 600;
    text-decoration: underline;
}

/* Locked Section Message */
.employer-locked-section {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
}

.locked-message iconify-icon {
    color: #bbb;
    margin-bottom: 20px;
}

.locked-message h2 {
    margin: 0 0 12px;
    font-size: 24px;
    color: #333;
}

.locked-message p {
    margin: 0 0 24px;
    color: var(--e-global-color-text);
    font-size: 16px;
}

/* Feature Locked Section - VDA Dashboard Style */
.employer-feature-locked-section {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
}

.employer-feature-locked-section .employer-lock-icon {
    color: #ccc;
    margin-bottom: 20px;
}

.employer-feature-locked-section h3 {
    margin: 0 0 15px;
}

.employer-feature-locked-section p {
    margin: 0 0 20px;
    font-size: 16px;
    color: var(--e-global-color-text);
    line-height: 1.6;
}

/* Plan Banner - VDA Dashboard Style */
.employer-plan-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.employer-plan-banner .employer-banner-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.employer-plan-banner .employer-banner-content {
    flex: 1;
}

.employer-plan-banner h3 {
    margin: 0 0 8px;
    color: white;
}

.employer-plan-banner p {
    margin: 0 0 8px;
    font-size: 14px;
    opacity: 0.9;
}

.employer-banner-no-plan {
    background: var(--e-global-color-accent);
    color: white;
}

.employer-banner-beta {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
}

.employer-banner-pro {
    background: var(--e-global-color-accent);
    color: white;
}

.employer-beta-expiry {
    font-size: 13px;
    font-weight: 600;
    margin-top: 5px;
}

.employer-banner-action {
    flex-shrink: 0;
}

/* Section Styles */
.employer-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.section-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.view-all-link {
    color: var(--e-global-color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.view-all-link:hover {
    text-decoration: underline;
}

/* Buttons */
.employer-btn {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    background-color: var(--e-global-color-accent);
    font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-size: var(--e-global-typography-accent-font-size);
    font-weight: var(--e-global-typography-accent-font-weight);
    line-height: var(--e-global-typography-accent-line-height);
    color: var(--e-global-color-2d1d21a);
    transition: all 0.2s;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    justify-content: center;
}

.employer-btn-primary {
    background: var(--e-global-color-primary);
    color: white;
}

.job-details-header-TitleBox {
    width: 85%;
}

.job-details-header-TitleBox h3 {
    margin-bottom: 20px;
}

ul.TitleBottomRow {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    font-size: var(--e-global-typography-919b61d-font-size);
    font-weight: var(--e-global-typography-d3e702f-font-weight);
    line-height: var(--e-global-typography-text-line-height);
    color: var(--e-global-color-text);
}

ul.TitleBottomRow li {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: start;
}

ul.TitleBottomRow li iconify-icon {
    color: var(--e-global-color-9e8ddfe);
    font-size: 20px;
}

ul.TitleBottomRow li:last-child {
    width: 100%;
}

.employer-btn-primary:hover {
    transform: translateY(-2px);
    color: white;
}

.employer-btn-secondary {
    background: white;
    color: var(--e-global-color-primary);
    border: 2px solid var(--e-global-color-primary);
}

.employer-btn-secondary:hover {
    background: #f5f5f5;
}

.employer-btn iconify-icon {
    font-size: 24px;
}

/* Form Styles */
.employer-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    margin: 0 0 20px;
}

.vda-btn iconify-icon {
    font-size: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--e-global-color-primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: #999;
    font-size: 12px;
}

/* Search Section */
.employer-search-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.search-filters {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 15px;
    align-items: center;
}

.employer-search-input,
.employer-filter-select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.employer-search-input {
    min-width: 300px;
}

.employer-filter-select {
    min-width: 200px;
}

/* Grid Layouts */
#vdas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .employer-dashboard-wrapper {
        flex-direction: column;
        max-width: 1024px !important;
    }

    .employer-sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .employer-main-content {
        max-width: 100%;
    }

    .search-filters {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .employer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .employer-dashboard-wrapper {
        max-width: 100% !important;
    }

    .action-cards {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Account Settings Styles */
.employer-settings-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.employer-settings-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.employer-settings-card h5 {
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.employer-settings-card h5 iconify-icon {
    font-size: 24px;
    color: var(--e-global-color-primary);
}

.employer-settings-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.employer-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.employer-form-group label {
    font-weight: 600;
    color: var(--e-global-color-9e8ddfe);
    font-size: 14px;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    line-height: 1.5;
}

.employer-form-group input[type="text"],
.employer-form-group input[type="email"],
.employer-form-group input[type="password"],
.employer-form-group input[type="tel"],
.employer-form-group input[type="number"],
.employer-form-group select {
    width: 100%;
    padding: 12px 16px 12px 16px !important;
    border-radius: 8px !important;
    transition: border-color 0.3s !important;
    outline: none !important;
    font-family: var(--e-global-typography-text-font-family), Sans-serif !important;
    font-size: var(--e-global-typography-text-font-size) !important;
    font-weight: var(--e-global-typography-text-font-weight) !important;
    line-height: var(--e-global-typography-text-line-height);
    color: var(--e-global-color-text);
    border: 1px solid #ececec !important;
    background: #f8f9fb !important;
    box-shadow: none !important;
    min-height: 53px;
}

.employer-form-group textarea {
    width: 100%;
    padding: 12px 16px 12px 16px !important;
    border-radius: 8px !important;
    transition: border-color 0.3s !important;
    outline: none !important;
    font-family: var(--e-global-typography-text-font-family), Sans-serif !important;
    font-size: var(--e-global-typography-text-font-size) !important;
    font-weight: var(--e-global-typography-text-font-weight) !important;
    line-height: var(--e-global-typography-text-line-height);
    color: var(--e-global-color-text);
    border: 1px solid #ececec !important;
    background: #f8f9fb !important;
    box-shadow: none !important;
}

.employer-form-group input:focus,
.employer-form-group select:focus,
.employer-form-group textarea:focus {
    outline: none;
}

.employer-form-group input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.employer-form-group small {
    color: var(--e-global-color-text);
    font-size: 12px;
}

.employer-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.employer-password-field .employer-password-wrapper {
    position: relative;
}

.employer-password-wrapper input {
    padding-right: 45px !important;
}

.employer-password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    font-size: 20px;
    transition: color 0.2s;
}

.employer-password-toggle:hover {
    color: #333;
}

.employer-settings-form button[type="submit"] {
    margin-top: 10px;
    align-self: flex-start;
}

/* jQuery Validation Error Styling */
.employer-password-field label.error,
.employer-form-group label.error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    font-weight: normal;
}

.employer-password-field input.error,
.employer-form-group input.error,
.employer-form-group select.error {
    border-color: #dc3545 !important;
}

.employer-password-field input.valid,
.employer-form-group input.valid,
.employer-form-group select.valid {
    border-color: #28a745;
}

label.error {
    color: #dc3545 !important;
    font-size: 0.875rem !important;
    display: block !important;
    margin-top: 0.25rem !important;
    font-weight: normal !important;
}

input.error,
select.error,
textarea.error {
    border-color: #dc3545 !important;
}

input.valid,
select.valid,
textarea.valid {
    border-color: #28a745 !important;
}

.employer-form-group input.error,
.employer-form-group select.error,
.employer-form-group textarea.error {
    border-color: #dc3545 !important;
}

@media (max-width: 768px) {
    .employer-settings-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Saved VDAs Section
   ======================================== */

/* Saved VDAs Grid - matching find-assistants layout */
#tab-saved-vdas .skd-professionals-grid,
#saved-vdas-list .skd-professionals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 20px;
}

/* Empty State */
.employer-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.employer-empty-state iconify-icon {
    display: block;
    margin: 0 auto 20px;
}

.employer-empty-state h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.employer-empty-state p {
    color: var(--e-global-color-text);
    font-size: 1rem;
}

/* Responsive Grid */
@media (max-width: 1200px) {

    #tab-saved-vdas .skd-professionals-grid,
    #saved-vdas-list .skd-professionals-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 768px) {

    #tab-saved-vdas .skd-professionals-grid,
    #saved-vdas-list .skd-professionals-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ========================================
   My Jobs Section
   ======================================== */

/* Jobs Grid */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 20px;
}

/* Job Card */
.job-card {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 25px;
    padding: 30px;
    background: white;
    flex-wrap: wrap;
    border-radius: 20px;
    border: 1px solid var(--e-global-color-938e6bc);
}


.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 7px;
}

.job-card-header>div {
    flex: 1;
}

/* .job-card-header h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
    color: #202124;
    font-weight: 600;
    line-height: 1.3;
} */

.job-card-badges {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.job-type-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    background: #e3f2fd;
    color: #1976d2;
    text-transform: capitalize;
}

.job-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-status.status-open {
    background: #e8f5e9;
    color: #2e7d32;
}

.job-status.status-closed {
    background: #ffebee;
    color: #c62828;
}

.toggle-job-status {
    background: transparent;
    border: 1px solid #dadce0;
    border-radius: 50% !important;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #fff;
    padding: 0 !important;
}

.toggle-job-status:hover {
    background: #f1f3f4;
    border-color: var(--e-global-color-primary);
    color: var(--e-global-color-primary);
}

.job-card-body {
    padding: 20px;
}

.job-card-body p {
    margin: 0 0 16px;
    color: #5f6368;
    line-height: 1.6;
    font-size: 0.95rem;
}

.job-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.job-info-grid span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #202124;
    font-weight: 500;
}

.job-info-grid iconify-icon {
    font-size: 1.1rem;
    color: var(--e-global-color-primary);
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.875rem;
    color: #80868b;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-meta iconify-icon {
    font-size: 1.1rem;
    color: #80868b;
}

.job-card-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.job-card-actions .employer-btn-sm {
    flex: 1;
}

/* Job Detail Modal */
.job-detail-modal {
    text-align: left;
}

.job-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8eaed;
}

.job-stats {
    display: flex;
    gap: 16px;
    font-size: 0.9rem;
    color: #5f6368;
}

.job-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-detail-body {
    margin-bottom: 24px;
}

.job-description {
    margin-bottom: 20px;
}

.job-description h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #202124;
}

.job-description p {
    color: #5f6368;
    line-height: 1.6;
}

.job-meta-info {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
}

.job-meta-info p {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: #5f6368;
}

.job-meta-info p:last-child {
    margin-bottom: 0;
}

.job-detail-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding-top: 16px;
    border-top: 1px solid #e8eaed;
}

/* SweetAlert Custom Styles */
.job-detail-swal .swal2-html-container {
    padding: 0;
    margin: 0;
}

.job-detail-swal .swal2-title {
    padding: 24px 24px 16px;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Job Details Modal */
#job-details-modal .skd-modal-content {
    max-width: 1000px;
}

#job-details-modal .skd-modal-body {
    max-height: 70vh;
    overflow-y: auto;
    padding: 0;
}

.job-detail-view {
    padding: 24px;
    display: grid;
    gap: 30px;
}

.job-meta-section {
    /* margin-bottom: 24px; */
}

.meta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #DEDEDE;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
}

.meta-item iconify-icon {
    font-size: 20px;
    color: #1e3a8a;
}

.meta-item strong {
    color: #111827;
    font-weight: 600;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.stats-inline {
    display: flex;
    gap: 25px;
}

.stats-inline span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 14px;
}

.stats-inline iconify-icon {
    font-size: 18px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 0;
    padding: 0;
    background: transparent;
}

.detail-box {
    display: flex;
    flex-direction: column;
    padding: 10px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.detail-box strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    color: var(--e-global-color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
}

.detail-box p {
    margin: 0;
    font-size: 14px;
    color: var(--e-global-color-9e8ddfe);
    font-weight: 500;
}


.content-section h6 {
    color: var(--e-global-color-9e8ddfe);
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.description-text {
    color: var(--e-global-color-text);
    font-size: var(--e-global-typography-919b61d-font-size);
    font-weight: var(--e-global-typography-d3e702f-font-weight);
    line-height: var(--e-global-typography-text-line-height);
    white-space: pre-wrap;
    margin: 0;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: stretch;
    align-items: self-start;
    flex-direction: column;
    gap: 10px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.check-list iconify-icon {
    color: var(--e-global-color-primary);
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.check-list span {
    font-size: var(--e-global-typography-919b61d-font-size);
    font-weight: var(--e-global-typography-d3e702f-font-weight);
    line-height: var(--e-global-typography-text-line-height);
    color: #787878;
    flex: 1;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    background: #F5F5F5;
    font-size: var(--e-global-typography-919b61d-font-size);
    font-weight: var(--e-global-typography-d3e702f-font-weight);
    line-height: var(--e-global-typography-text-line-height);
    color: #787878;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
}

/* Responsive Jobs Grid */
@media (max-width: 768px) {
    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .job-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .toggle-job-status {
        align-self: flex-end;
    }

    .job-card-actions {
        flex-wrap: wrap;
    }

    .job-card-actions .employer-btn-sm {
        flex: 1 1 calc(50% - 4px);
    }

    .job-stats {
        flex-direction: column;
        gap: 8px;
    }

    .job-detail-actions {
        flex-direction: column;
    }

    #job-details-modal .job-details-grid {
        grid-template-columns: 1fr;
    }

    #job-details-modal .job-meta-info {
        flex-direction: column;
        gap: 10px;
    }

    #job-details-modal .job-status-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    #job-details-modal .modal-footer {
        flex-wrap: wrap;
    }

    #job-details-modal .modal-footer .employer-btn {
        flex: 1 1 auto;
    }
}

/* ============================================
   APPLICATION MANAGEMENT STYLES
   ============================================ */

/* Applications Toolbar (Filters & Search) */
.applications-toolbar {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.filter-group {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.filter-select,
.filter-search {
    width: 100%;
    padding: 12px 45px 12px 16px !important;
    border-radius: 8px !important;
    transition: border-color 0.3s !important;
    outline: none !important;
    font-family: var(--e-global-typography-text-font-family), Sans-serif !important;
    font-size: var(--e-global-typography-text-font-size) !important;
    font-weight: var(--e-global-typography-text-font-weight) !important;
    line-height: var(--e-global-typography-text-line-height);
    color: var(--e-global-color-text);
    border: 1px solid #ececec !important;
    background: #f8f9fb !important;
    box-shadow: none !important;
}

.filter-select:focus,
.filter-search:focus {
    border-color: var(--e-global-color-primary);
}

.search-group {
    position: relative;
}

.search-group iconify-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 20px;
    pointer-events: none;
}

/* Applications Grid */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Application Card */
.application-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.application-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--e-global-color-primary);
}

.application-card-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
}

.applicant-avatar {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.applicant-avatar img,
.vda-avatar-placeholder {
    width: 100%;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover;
}

.vda-avatar-placeholder {
    background: var(--e-global-color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.applicant-details {
    flex: 1;
    min-width: 0;
}

.applicant-name {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.applicant-tagline {
    margin: 0 0 8px;
    font-size: 13px;
    color: var(--e-global-color-text);
}

.applicant-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--e-global-color-text);
}

.applicant-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.applicant-meta iconify-icon {
    font-size: 16px;
    color: #999;
}

/* Application Status Badge */
.application-status-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-shortlisted {
    background: #d1ecf1;
    color: #0c5460;
}

.status-hired {
    background: #d4edda;
    color: #155724;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

/* Application Card Body */
.application-card-body {
    margin-bottom: 15px;
}

.job-applied-for {
    margin: 0 0 10px;
    font-size: 14px;
    color: var(--e-global-color-text);
}

.job-applied-for strong {
    color: #333;
}

.cover-letter-preview {
    margin: 0;
    font-size: 14px;
    color: var(--e-global-color-text);
    line-height: 1.5;
}

/* Application Card Footer */
.application-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.application-date {
    font-size: 13px;
    color: #999;
}

.view-application-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Application Detail Modal */
.application-detail-view {
    padding: 10px;
    display: grid;
    gap: 30px;
}

.app-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    border-radius: 12px;
}

.app-vda-profile {
    display: flex;
    gap: 20px;
    flex: 1;
}

.app-vda-avatar {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.app-vda-avatar img {
    width: 100%;
    height: 100% !important;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
}

.app-vda-info h3 {
    margin: 0 0 5px;
}

.app-vda-tagline {
    margin: 0 0 12px;
    font-size: 14px;
    color: var(--e-global-color-text);
}

.app-vda-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    color: var(--e-global-color-text);
}

.app-vda-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.app-vda-meta iconify-icon {
    font-size: 18px;
}

.app-status-badge {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Application Info Grid */
.app-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.app-info-card {
    display: flex;
    flex-direction: column;
    padding: 10px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.app-info-card strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    color: var(--e-global-color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
}

.app-info-card p {
    margin: 0;
    font-size: 14px;
    color: var(--e-global-color-9e8ddfe);
    font-weight: 500;
}

/* Application Content Sections */
.app-content-section {
    padding-bottom: 25px;
    border-bottom: 1px solid #DEDEDE;
}

.app-content-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.app-content-section h4 {
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-content-section h4 iconify-icon {
    font-size: 20px;
    color: var(--e-global-color-primary);
}

.app-content-section a {
    color: #093c61;
}

.cover-letter-text {
    color: var(--e-global-color-text);
    font-size: var(--e-global-typography-919b61d-font-size);
    font-weight: var(--e-global-typography-d3e702f-font-weight);
    line-height: var(--e-global-typography-text-line-height);
    white-space: pre-wrap;
    margin: 0;
    padding: 20px;
}

/* Skills & Tags */
.skills-list,
.specializations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag,
.spec-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #e0e7ff;
    color: #4338ca;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.spec-tag {
    background: #fef3c7;
    color: #92400e;
}

/* Portfolio Links */
.portfolio-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.portfolio-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: var(--e-global-color-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-links a:hover {
    transform: translateY(-2px);
    color: var(--e-global-color-primary);
}

.portfolio-links iconify-icon {
    font-size: 22px;
}

/* Employer Notes */
.employer-notes-textarea {
    width: 100%;
    padding: 12px 16px 12px 16px !important;
    border-radius: 8px !important;
    transition: border-color 0.3s !important;
    outline: none !important;
    font-family: var(--e-global-typography-text-font-family), Sans-serif !important;
    font-size: var(--e-global-typography-text-font-size) !important;
    font-weight: var(--e-global-typography-text-font-weight) !important;
    line-height: var(--e-global-typography-text-line-height);
    color: var(--e-global-color-text);
    border: 1px solid #ececec !important;
    background: #f8f9fb !important;
    box-shadow: none !important;
}


.employer-notes-textarea:focus {
    outline: none;
}

/* Application Modal Footer */
#application-details-modal .skd-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

#application-details-modal .status-actions {
    display: flex;
    gap: 10px;
}

.status-note-actions_Area {
    display: flex;
    gap: 15px;
    align-items: center;
}

.skd-modal-footer.StatusModalFooter button {
    width: fit-content;
    flex: 0;
}

#application-details-modal .status-select {
    width: 100%;
    padding: 12px 16px 12px 16px !important;
    border-radius: 8px !important;
    transition: border-color 0.3s !important;
    outline: none !important;
    font-family: var(--e-global-typography-text-font-family), Sans-serif !important;
    font-size: var(--e-global-typography-text-font-size) !important;
    font-weight: var(--e-global-typography-text-font-weight) !important;
    line-height: var(--e-global-typography-text-line-height);
    color: var(--e-global-color-text);
    border: 1px solid #ececec !important;
    background: #f8f9fb !important;
    box-shadow: none !important;
    min-height: 53px;
}

#application-details-modal .status-select:focus {
    outline: none;
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 50px;
    font-size: 16px;
    color: var(--e-global-color-text);
}

.loading-spinner iconify-icon {
    font-size: 40px;
    color: var(--e-global-color-primary);
    margin-bottom: 15px;
}

.rotating {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Applications */
@media (max-width: 1024px) {
    .applications-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .applications-toolbar {
        flex-direction: column;
    }

    .filter-group {
        min-width: 100%;
    }

    .applications-grid {
        grid-template-columns: 1fr;
    }

    .app-detail-header {
        flex-direction: column;
        gap: 15px;
    }

    .app-info-grid {
        grid-template-columns: 1fr;
    }

    .app-vda-profile {
        flex-direction: column;
        text-align: center;
    }

    .app-vda-meta {
        justify-content: center;
    }

    #application-details-modal .skd-modal-footer {
        flex-direction: column;
        align-items: stretch;
    }

    #application-details-modal .status-actions {
        flex-direction: column;
    }
}

/* Orders Section */
.employer-orders-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.orders-table-wrapper {
    overflow-x: auto;
    margin-top: 20px;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.orders-table thead {
    background: #f8f9fa;
    border-bottom: 2px solid #e0e0e0;
}

.orders-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.orders-table td {
    padding: 18px 15px;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 14px;
}

.orders-table tbody tr:hover {
    background: #f8f9fa;
    transition: background 0.2s ease;
}

.order-status {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-status.status-completed {
    background: #d4edda;
    color: #155724;
}

.order-status.status-pending {
    background: #fff3cd;
    color: #856404;
}

.order-status.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.order-status.status-expired {
    background: #f8d7da;
    color: #721c24;
}

.no-orders {
    text-align: center;
    padding: 60px 20px;
}

.no-orders iconify-icon {
    color: #ccc;
    margin-bottom: 20px;
}

.no-orders h3 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #333;
}

.no-orders p {
    margin: 0;
    color: var(--e-global-color-text);
    font-size: 16px;
}

.no-orders a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.no-orders a:hover {
    text-decoration: underline;
}

/* Responsive Styles for Plan Banners and Locked Sections */
@media (max-width: 768px) {
    .employer-plan-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .employer-plan-banner .employer-banner-icon {
        font-size: 40px;
    }

    .employer-banner-action {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;

    }

    .employer-banner-action .employer-btn {
        /* width: 100%; */
    }

    .employer-feature-locked-section {
        padding: 40px 20px;
    }

    .employer-feature-locked-section .employer-lock-icon {
        font-size: 48px;
    }

    .employer-feature-locked-section h3 {
        font-size: 20px;
    }

    .employer-feature-locked-section p {
        font-size: 14px;
    }
}

   / *   E n h a n c e d   A p p l i c a t i o n   D e t a i l s   S t y l e s   * /   . p o r t f o l i o - g r i d    {
               d i s p l a y :    g r i d ;
               g r i d - t e m p l a t e - c o l u m n s :    r e p e a t ( a u t o - f i l l ,    m i n m a x ( 2 0 0 p x ,    1 f r ) ) ;
               g a p :    1 6 p x ;
               m a r g i n - t o p :    1 2 p x ;
       
}

     . p o r t f o l i o - i t e m - p r e v i e w    {
               b o r d e r :    1 p x   s o l i d   # e 0 e 0 e 0 ;
               b o r d e r - r a d i u s :    8 p x ;
               o v e r f l o w :    h i d d e n ;
               t r a n s i t i o n :    t r a n s f o r m   0 . 2 s ;
       
}

     . p o r t f o l i o - i t e m - p r e v i e w : h o v e r    {
               t r a n s f o r m :    t r a n s l a t e Y ( - 2 p x ) ;
               b o x - s h a d o w :    0   4 p x   1 2 p x   r g b a ( 0 ,    0 ,    0 ,    0 . 1 ) ;
       
}

     . p o r t f o l i o - i t e m - p r e v i e w   i m g    {
               w i d t h :    1 0 0 % ;
               h e i g h t :    1 5 0 p x ;
               o b j e c t - f i t :    c o v e r ;
       
}

     . p o r t f o l i o - n o - i m a g e    {
               w i d t h :    1 0 0 % ;
               h e i g h t :    1 5 0 p x ;
               d i s p l a y :    f l e x ;
               a l i g n - i t e m s :    c e n t e r ;
               j u s t i f y - c o n t e n t :    c e n t e r ;
               b a c k g r o u n d :    # f 5 f 5 f 5 ;
               c o l o r :    # 9 9 9 ;
       
}

     . p o r t f o l i o - n o - i m a g e   i c o n i f y - i c o n    {
               f o n t - s i z e :    4 8 p x ;
       
}

     . p o r t f o l i o - i t e m - d e t a i l s    {
               p a d d i n g :    1 2 p x ;
       
}

     . p o r t f o l i o - i t e m - d e t a i l s   h 5    {
               m a r g i n :    0   0   8 p x   0 ;
               f o n t - s i z e :    1 4 p x ;
               f o n t - w e i g h t :    6 0 0 ;
               c o l o r :    # 3 3 3 ;
       
}

     . p o r t f o l i o - c a t e g o r y    {
               d i s p l a y :    i n l i n e - b l o c k ;
               p a d d i n g :    4 p x   1 0 p x ;
               b a c k g r o u n d :    # e 3 f 2 f d ;
               c o l o r :    # 1 9 7 6 d 2 ;
               f o n t - s i z e :    1 1 p x ;
               b o r d e r - r a d i u s :    4 p x ;
               m a r g i n - b o t t o m :    8 p x ;
       
}

     . p o r t f o l i o - i t e m - d e t a i l s   p    {
               f o n t - s i z e :    1 2 p x ;
               c o l o r :    # 6 6 6 ;
               m a r g i n :    0 ;
       
}

     . q u e s t i o n s - a n s w e r s    {
               d i s p l a y :    f l e x ;
               f l e x - d i r e c t i o n :    c o l u m n ;
               g a p :    1 6 p x ;
               m a r g i n - t o p :    1 2 p x ;
       
}

     . q a - i t e m    {
               p a d d i n g :    1 6 p x ;
               b a c k g r o u n d :    # f 9 f a f b ;
               b o r d e r - l e f t :    3 p x   s o l i d   v a r ( - - e - g l o b a l - c o l o r - p r i m a r y ) ;
               b o r d e r - r a d i u s :    6 p x ;
       
}

     . q a - i t e m   s t r o n g    {
               d i s p l a y :    b l o c k ;
               m a r g i n - b o t t o m :    8 p x ;
               c o l o r :    # 3 3 3 ;
               f o n t - s i z e :    1 4 p x ;
       
}

     . q a - i t e m   p    {
               m a r g i n :    0 ;
               c o l o r :    # 6 6 6 ;
               l i n e - h e i g h t :    1 . 6 ;
       
}

     . m i l e s t o n e - p l a n    {
               p a d d i n g :    1 6 p x ;
               b a c k g r o u n d :    # f f f ;
               b o r d e r :    1 p x   s o l i d   # e 0 e 0 e 0 ;
               b o r d e r - r a d i u s :    8 p x ;
               l i n e - h e i g h t :    1 . 8 ;
               w h i t e - s p a c e :    p r e - w r a p ;
               f o n t - s i z e :    1 4 p x ;
               c o l o r :    # 3 3 3 ;
       
}

     . a t t a c h m e n t s - l i s t    {
               d i s p l a y :    f l e x ;
               f l e x - d i r e c t i o n :    c o l u m n ;
               g a p :    1 0 p x ;
               m a r g i n - t o p :    1 2 p x ;
       
}

     . a t t a c h m e n t - l i n k    {
               d i s p l a y :    i n l i n e - f l e x ;
               a l i g n - i t e m s :    c e n t e r ;
               g a p :    8 p x ;
               p a d d i n g :    1 0 p x   1 6 p x ;
               b a c k g r o u n d :    # f f f ;
               b o r d e r :    1 p x   s o l i d   # e 0 e 0 e 0 ;
               b o r d e r - r a d i u s :    6 p x ;
               c o l o r :    v a r ( - - e - g l o b a l - c o l o r - p r i m a r y ) ;
               t e x t - d e c o r a t i o n :    n o n e ;
               f o n t - s i z e :    1 4 p x ;
               t r a n s i t i o n :    a l l   0 . 2 s ;
               m a x - w i d t h :    f i t - c o n t e n t ;
       
}

     . a t t a c h m e n t - l i n k : h o v e r    {
               b a c k g r o u n d :    # f 5 f 5 f 5 ;
               b o r d e r - c o l o r :    v a r ( - - e - g l o b a l - c o l o r - p r i m a r y ) ;
       
}

     . a t t a c h m e n t - l i n k   i c o n i f y - i c o n    {
               f o n t - s i z e :    2 0 p x ;
       
}

     
/* =============================================
   Review Modal & Review System Styles
   ============================================= */

/* Review Modal */
.skd-modal-medium {
    max-width: 600px;
}

.review-vda-info-header {
    text-align: left;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.review-vda-info-header h4 {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.review-vda-info-header span {
    color: var(--e-global-color-primary);
    font-weight: 600;
}

/* Star Rating Input */
.star-rating-input {
    display: flex;
    gap: 8px;
    justify-content: start;
    margin: 0px 0;
}

.star-rating-input .star {
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 32px;
    color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-rating-input .star:hover,
.star-rating-input .star.active {
    transform: scale(1.1);
}

.star-rating-input .star iconify-icon {
    color: #ddd;
    transition: color 0.2s ease;
    font-size: 32px;
    width: 32px;
    height: 32px;
    display: inline-block;
}

.star-rating-input .star.active iconify-icon,
.star-rating-input .star:hover iconify-icon {
    color: #FFD700;
}

.rating-label {
    display: block;
    text-align: left;
    color: #666;
    font-style: italic;
    margin-top: 5px;
    margin-bottom: 15px;
}

/* Review Guidelines */
.review-guidelines {
    background: #f0f7ff;
    border-left: 4px solid var(--e-global-color-primary);
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
}

.review-guidelines h5 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-guidelines ul {
    margin: 0;
    padding-left: 20px;
    list-style: disc;
}

.review-guidelines li {
    color: #555;
    font-size: 13px;
    margin-bottom: 5px;
}

/* Reviews List in Dashboard */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.review-item-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.review-item-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.review-vda-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.vda-avatar-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.vda-avatar-small img {
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
}

.avatar-placeholder-small {
    width: 100%;
    height: 100%;
    background: var(--e-global-color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.review-vda-info h5 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333;
}

.review-stars-display {
    display: flex;
    gap: 2px;
}

.review-stars-display iconify-icon {
    font-size: 16px;
}

.review-text-preview {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.review-meta-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.review-date {
    color: #999;
    font-size: 13px;
}

.view-profile-link {
    color: var(--e-global-color-primary);
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.view-profile-link:hover {
    color: var(--color-secondary);
}

/* No Reviews Message */
.no-reviews-message {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-reviews-message iconify-icon {
    display: block;
    margin: 0 auto 20px;
}

.no-reviews-message p {
    margin: 10px 0;
    color: #666;
}

.no-reviews-message a {
    color: var(--e-global-color-primary);
    text-decoration: none;
    font-weight: 600;
}

.no-reviews-message a:hover {
    text-decoration: underline;
}

/* Loading Animation for Spinning Icon */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spin {
    animation: spin 1s linear infinite;
}

/* Leave Review Button Enhancement */
.leave-review-btn {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Hired VDAs Review Grid */
.hired-vdas-review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 24px;
}

.hired-vda-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.hired-vda-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.hired-vda-card.has-review {
    border-color: #d4edda;
    background: #f8fdf9;
}

.hired-vda-card.no-review {
    border-color: #fff3cd;
    background: #fffef9;
}

.hired-vda-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.vda-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.vda-info-text h5 {
    margin: 0 0 4px 0;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.vda-tagline {
    margin: 0;
    font-size: 13px;
    color: #666;
}

.review-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.review-status-badge.reviewed {
    background: #d4edda;
    color: #155724;
}

.review-status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.review-status-badge iconify-icon {
    font-size: 14px;
}

.project-info {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.project-info h6 {
    margin: 0 0 8px 0;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-info h6 iconify-icon {
    font-size: 14px;
}

.project-title {
    margin: 0 0 6px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.hire-date {
    margin: 0;
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hire-date iconify-icon {
    font-size: 14px;
}

.existing-review {
    padding: 12px;
    background: #fff;
    border: 1px solid #e8f5e9;
    border-radius: 8px;
}

.existing-review .review-stars-display {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.review-date-small {
    font-size: 12px;
    color: #999;
    margin-left: 8px;
}

.existing-review .review-text-preview {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.review-action {
    display: flex;
    gap: 10px;
    align-items: center;
}

.review-action .leave-review-btn {
    flex: 1;
    justify-content: center;
}

.review-action .view-profile-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: var(--e-global-color-primary);
    text-decoration: none;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    transition: all 0.2s;
    background: #fff;
}

.review-action .view-profile-link:hover {
    background: #f5f5f5;
    border-color: var(--e-global-color-primary);
}

.no-reviews-message h4 {
    margin: 10px 0;
    color: #333;
    font-size: 20px;
}

.no-reviews-message .employer-menu-item {
    display: inline;
    color: var(--e-global-color-primary);
    cursor: pointer;
    text-decoration: underline;
}

.no-reviews-message .employer-menu-item:hover {
    color: var(--color-secondary);
}

/* Review Project Context */
.review-project-context {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
}

.review-project-context iconify-icon {
    font-size: 16px;
    color: #888;
}