/* FILE: assets/css/job-board.css */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Asap+Condensed:wght@400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Brand Colors */
:root {
    /* Primary Colors */
    --primary-blue: #5271FF;
    --primary-dark-navy: #0A1A2F;
    
    /* Secondary Colors */
    --secondary-dark: #545454;
    --black: #222222;
    --white: #FFFFFF;
    
    /* Grey Scale */
    --grey-900: #222222;
    --grey-700: #555555;
    --grey-500: #999999;
    --grey-200: #E5E7EB;
    --grey-50: #F9FAFB;
    
    /* Accent Colors */
    --green: #22C55E;
    --orange: #F59E0B;
    
    /* Typography */
    --font-heading: 'Asap Condensed', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Reset & Base Typography */
* {
    box-sizing: border-box;
}

.fhc-job-board-container,
.fhc-job-board-container * {
    font-family: var(--font-body);
}

.fhc-job-board-container h1,
.fhc-job-board-container h2,
.fhc-job-board-container h3,
.fhc-job-board-container h4,
.fhc-job-board-container h5,
.fhc-job-board-container h6 {
    font-family: var(--font-heading);
    color: var(--black);
    font-weight: 700;
    line-height: 1.2;
}

/* General Styles */
.fhc-job-board-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: var(--grey-900);
}

/* Job Filters */
.fhc-job-filters {
    background: var(--grey-50);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid var(--grey-200);
}

.fhc-filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.fhc-filter-col {
    display: flex;
    flex-direction: column;
}

.fhc-filter-col label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
    font-size: 14px;
    letter-spacing: 0.5px;
}

.fhc-filter-col input[type="text"],
.fhc-filter-col input[type="number"],
.fhc-filter-col select {
    padding: 12px 16px;
    border: 1px solid var(--grey-200);
    border-radius: 6px;
    font-size: 16px;
    font-family: var(--font-body);
    color: var(--grey-900);
    background: var(--white);
    transition: all 0.3s ease;
}

.fhc-filter-col input[type="text"]:focus,
.fhc-filter-col input[type="number"]:focus,
.fhc-filter-col select:focus {
    border-color: var(--primary-blue);
    outline: none;
}

.fhc-salary-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fhc-salary-inputs input {
    flex: 1;
}

.fhc-salary-inputs span {
    color: var(--grey-500);
    font-weight: 500;
}

.fhc-filter-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding-top: 10px;
}

/* Buttons */
.fhc-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-heading);
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    line-height: 1;
}

.fhc-btn-primary {
    background: var(--primary-blue);
    color: var(--white) !important;
    border: 2px solid var(--primary-blue);
}

.fhc-btn-primary:hover {
    background: transparent;
	color: #3d5ff5 !important;
}

.fhc-btn-secondary {
    background: transparent !important;
    color: var(--e-global-color-primary) !important;
	border: 2px solid var(--primary-blue) !important;
}

.fhc-btn-secondary:hover {
	background: var(--primary-blue) !important;
    color: var(--white) !important;
}

.fhc-btn-small {
    padding: 8px 16px;
    font-size: 13px;
}

.fhc-btn-large {
    padding: 16px 32px;
    font-size: 16px;
}
/* Job List */
.fhc-job-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fhc-job-item {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 8px;
    padding: 28px;
    transition: all 0.3s ease;
}

.fhc-job-item:hover {
    box-shadow: 0 8px 24px rgba(10, 26, 47, 0.08);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.fhc-job-header {
    margin-bottom: 10px;
}

.fhc-job-title {
    margin: 0 0 8px 0;
    font-size: 18px !important;
    font-family: var(--font-heading);
    font-weight: 700;
}

.fhc-job-title a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.fhc-job-title a:hover {
    color: var(--primary-blue);
}

.fhc-job-company {
    color: var(--grey-700);
    font-size: 13px;
    font-weight: 500;
    margin: 0;
}

.fhc-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 10px;
    font-size: 12px;
}

.fhc-job-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--grey-500);
    font-weight: 500;
}
.fhc-job-meta span img {
    height: 18px;
    object-fit: contain;
}
.fhc-job-location {
    color: var(--grey-700);
}

/* .fhc-job-salary {
    color: var(--orange);
    font-weight: 600;
    background: #FEF3C7;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
} */

.fhc-job-excerpt {
    color: var(--grey-500);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 15px;
}

.fhc-job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--grey-200);
}
.fhc-job-footer a.fhc-btn.fhc-btn-small {
    font-size: 16px;
    color: var(--black);
	padding: 0;
}
.fhc-job-footer a.fhc-btn.fhc-btn-small:hover {
    color: var(--primary-blue);
}
.fhc-job-date {
    color: var(--grey-500);
    font-size: 13px;
    font-weight: 500;
}

.fhc-job-new-badge {
    background: var(--green);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}

/* No Jobs */
.fhc-no-jobs {
    background: var(--grey-50);
    padding: 60px 20px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--grey-200);
}

.fhc-no-jobs p {
    font-size: 18px;
    color: var(--grey-700);
    font-weight: 500;
}

/* Loading */
.fhc-loading {
    text-align: center;
    padding: 40px;
    font-size: 16px;
    color: var(--grey-700);
    font-weight: 500;
}

.fhc-spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid var(--grey-200);
    border-top: 3px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Job Submission Form */

.fhc-job-submission-form h2 {
    color: var(--black);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 30px !important;
    font-family: var(--font-heading);
	text-align: center;
}

.fhc-job-submission-form h3 {
    color: var(--black);
    margin-top: 36px;
    margin-bottom: 20px;
    font-size: 18px !important;
    font-family: var(--font-heading);
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 2px;
    width: fit-content;
}

.fhc-job-submission-form p {
    margin-bottom: 20px;
}

.fhc-job-submission-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--black);
    font-size: 14px;
    letter-spacing: 0.5px;
}

.fhc-job-submission-form input[type="text"],
.fhc-job-submission-form input[type="email"],
.fhc-job-submission-form input[type="url"],
.fhc-job-submission-form input[type="tel"],
.fhc-job-submission-form input[type="number"],
.fhc-job-submission-form select,
.fhc-job-submission-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--grey-200);
    border-radius: 6px;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--grey-900);
    background: var(--white);
    transition: all 0.3s ease;
}

.fhc-job-submission-form input:focus,
.fhc-job-submission-form select:focus,
.fhc-job-submission-form textarea:focus {
    border-color: var(--primary-blue);
    outline: none;
}

.fhc-job-submission-form textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

.fhc-job-submission-form small {
    color: var(--grey-500);
    font-size: 14px;
    display: block;
    margin-top: 4px;
}

.fhc-pricing-info {
    background: linear-gradient(135deg, #e0e7ff 0%, #fef3c712 100%);
    padding: 28px;
    border-radius: 8px;
    margin: 32px 0;
    text-align: center;
    border: 2px solid var(--primary-blue);
}

.fhc-pricing-info h3 {
    margin: 0 0 26px 0;
    font-size: 20px !important;
    color: var(--black);
    border: none;
    padding: 0;
	text-align: center;
    width: auto;
}
.fhc-price {
    font-size: 30px;
    color: var(--primary-blue);
    margin: 20px 0;
    font-family: var(--font-heading);
    font-weight: 700;
}

.fhc-price span {
    font-size: 16px;
    color: var(--grey-700);
    display: block;
    margin-top: 8px;
    font-weight: 500;
}
#fhc-job-submission-form button,
#fhc-email-check-form button{
    width: 100%;
}
/* Notices */
.fhc-notice {
    padding: 16px 20px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-weight: 500;
}

.fhc-notice-info {
    background: #E0E7FF;
    color: var(--primary-blue);
    border-left: 4px solid var(--primary-blue);
}

.fhc-notice-success {
    background: #DCFCE7;
    color: #166534;
    border-left: 4px solid var(--green);
}

.fhc-notice-error {
    background: #FEE2E2;
    color: #991B1B;
    border-left: 4px solid #DC2626;
}

.fhc-notice-warning {
    background: #FEF3C7;
    color: #92400E;
    border-left: 4px solid var(--orange);
}

/* Employer Dashboard */
/* .fhc-employer-dashboard {
    padding: 50px 0;
} */

.fhc-employer-dashboard h2 {
    font-size: 30px !important;
    color: var(--black);
    margin: 0 0 20px;
    font-family: var(--font-heading);
}

.fhc-jobs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(10, 26, 47, 0.06);
    border: 1px solid var(--grey-200);
	font-size: 15px;
}

.fhc-jobs-table th {
    background: var(--grey-50);
    padding: 16px;
    text-align: left;
    font-weight: 700;
    color: var(--black);
    font-family: var(--font-heading);
    border: 1px solid var(--grey-200);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.fhc-jobs-table td {
    padding: 16px;
    border: 1px solid var(--grey-200);
    color: var(--grey-900);
    vertical-align: middle;
}

.fhc-jobs-table tr:hover {
    background: var(--grey-50);
}

.fhc-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
    display: inline-block;
	text-align: center;
}

.fhc-status-publish {
    background: #DCFCE7;
    color: #166534;
}

.fhc-status-pending {
    background: #FEF3C7;
    color: #92400E;
}

.fhc-status-draft {
    background: var(--grey-200);
    color: var(--grey-700);
}

.fhc-status-expired {
    background: #FEE2E2;
    color: #991B1B;
}

.fhc-payment-pending {
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    margin-left: 8px;
}
.fhc_actions {
    display: flex;
    gap: 20px;
    align-items: center;
}
.fhc_actions .fhc-btn-small {
    padding: 0;
    border: 0;
    background-color: transparent;
    color: #545454;
    font-size: 15px;
    line-height: 1;
}
.fhc_actions .fhc-delete-job {
    color: red;
}
.fhc-dashboard-actions {
    margin-top: 32px;
    display: flex;
    gap: 16px;
}
.fhc-delete-job {
    line-height: 1;
}

.fhc-dashboard-actions a.fhc-btn:last-child {
    color: var(--e-global-color-primary);
}
.overflow_table {
    overflow: auto;
}
/* Map */
#fhc-job-map {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--grey-200);
}

.fhc-map-info {
    font-family: var(--font-body);
}

.fhc-map-info h4 {
    margin: 0 0 8px 0;
    font-family: var(--font-heading);
    font-size: 16px;
}

.fhc-map-info h4 a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
}

.fhc-map-info h4 a:hover {
    text-decoration: underline;
}

.fhc-map-info p {
    margin: 0;
    color: var(--grey-700);
    font-size: 14px;
}

/* Pagination */
.fhc-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.fhc-pagination a,
.fhc-pagination span {
    padding: 10px 16px;
    border: 1px solid var(--grey-200);
    border-radius: 6px;
    text-decoration: none;
    color: var(--grey-900);
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

.fhc-pagination a:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.fhc-pagination .current {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

/* Icons (using text as fallback) */
.fhc-icon-location::before {
    content: "📍 ";
}

.fhc-icon-money::before {
    content: "💰 ";
}

/* Form Steps */
.fhc-form-step {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Credit Packages */
.fhc-credit-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 24px;
	max-width: 1200px;
    margin: 0 auto 60px;
}

.fhc-package {
    background: var(--white);
    border: 2px solid var(--grey-200);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.fhc-package:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(82, 113, 255, 0.15);
}

.fhc-package h3 {
    font-size: 24px;
    margin: 0 0 16px 0;
    color: var(--black);
    font-family: var(--font-heading);
}

.fhc-package .price {
    font-size: 36px;
    color: var(--primary-blue);
    font-weight: 700;
    font-family: var(--font-heading);
    margin: 16px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .fhc-filter-row {
        grid-template-columns: 1fr;
    }
    
    .fhc-job-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .fhc-job-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .fhc-jobs-table {
        font-size: 14px;
    }
    
    .fhc-jobs-table th,
    .fhc-jobs-table td {
        padding: 12px;
    }
    
    .fhc-job-title {
        font-size: 20px;
    }
    
    .fhc-credit-packages {
        grid-template-columns: 1fr;
    }
    
    .fhc-dashboard-actions {
        flex-direction: column;
		align-items: center;
    }
}

/* Combined Search Page Styles */
.fhc-combined-search-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.fhc-combined-filters {
    background: var(--grey-50);
    padding: 25px;
    margin-bottom: 0;
    border-radius: 8px 8px 0 0;
    border: 1px solid var(--grey-200);
    border-bottom: none;
}

.fhc-split-view-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
    border: 1px solid var(--grey-200);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

/* Layout Variants */
.fhc-split-view-container.layout-list {
    grid-template-columns: 1fr;
}

.fhc-split-view-container.layout-list .fhc-split-map {
    display: none;
}

.fhc-split-view-container.layout-map {
    grid-template-columns: 1fr;
}

.fhc-split-view-container.layout-map .fhc-split-listings {
    display: none;
}

/* Job Listings Side */
.fhc-split-listings {
    background: var(--white);
    overflow-y: auto;
    max-height: 1500px;
    border-right: 1px solid var(--grey-200);
}

.fhc-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--grey-50);
    border-bottom: 2px solid var(--grey-200);
    sticky: top;
    z-index: 10;
}

.fhc-results-header h3 {
    margin: 0;
    font-size: 16px !important;
    color: var(--black);
    font-family: var(--font-heading);
    font-weight: 700;
}

.fhc-view-toggle {
    display: flex;
    gap: 8px;
}

.fhc-toggle-btn {
    background: var(--white);
    border: 2px solid var(--grey-200);
    padding: 8px 12px !important;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fhc-toggle-btn:hover {
    border-color: var(--primary-blue);
    background: #E0E7FF;
}

.fhc-toggle-btn.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

.fhc-toggle-btn .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.fhc-combined-job-results {
    padding: 0;
}

.fhc-combined-job-item {
    padding: 16px;
    border-bottom: 1px solid var(--grey-200);
    transition: all 0.3s ease;
    cursor: pointer;
}

.fhc-combined-job-item:hover,
.fhc-combined-job-item.highlight {
    background: #E0E7FF;
    border-left: 4px solid var(--primary-blue);
}

.fhc-combined-job-item:last-child {
    border-bottom: none;
}

/* Map Side */
.fhc-split-map {
    position: relative;
    background: var(--grey-50);
}

#fhc-combined-map {
    width: 100%;
    height: 100% !important;
}

.fhc-map-legend {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 12px 16px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(10, 26, 47, 0.15);
    display: flex;
    gap: 16px;
    font-size: 13px;
    font-weight: 600;
    z-index: 5;
}

.fhc-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fhc-marker-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
}

.fhc-marker-icon.blue {
    background: var(--primary-blue);
}

.fhc-marker-icon.default {
    background: var(--orange);
}

/* Search Icon */
.fhc-search-icon {
    font-size: 16px;
    margin-right: 4px;
	display: none;
}

/* Responsive Combined Search */
@media (max-width: 1200px) {
    .fhc-split-view-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .fhc-split-listings {
        border-right: none;
        border-bottom: 1px solid var(--grey-200);
    }
    
    .fhc-split-map {
        min-height: 400px;
    }
    
    .fhc-view-toggle {
        display: none;
    }
}

@media (max-width: 768px) {
    .fhc-combined-filters {
        padding: 20px;
    }
    
    .fhc-results-header {
        padding: 15px;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .fhc-split-map {
        min-height: 300px;
    }
    
    .fhc-map-legend {
        flex-direction: column;
        gap: 8px;
        font-size: 11px;
        padding: 8px 12px;
    }
}

/* Print Styles */
@media print {
    .fhc-job-filters,
    .fhc-btn,
    .fhc-pagination,
    .fhc-split-map,
    .fhc-view-toggle {
        display: none;
    }
}

/* ============================================================================
   CREDIT SYSTEM STYLES
   ============================================================================ */

/* Buy Credits Page */
.fhc-credits-header {
    text-align: center;
    margin-bottom: 30px;
}

.fhc-buy-credits-container h2 {
    margin: 0 0 20px;
}

.fhc-credits-subtitle {
    color: var(--grey-700);
    margin-bottom: 30px;
}

.fhc-current-balance {
    padding: 10px 20px;
    border-radius: 12px;
    display: inline-block;
    border: 2px solid var(--primary-blue);
}

.fhc-balance-label {
    font-size: 14px;
    color: var(--grey-700);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-right: 10px;
}

.fhc-balance-number {
    font-size: 30px;
    color: var(--primary-blue);
    font-weight: 700;
    font-family: var(--font-heading);
    margin: 0 8px;
}

.fhc-balance-text {
    font-size: 18px;
    color: var(--grey-900);
    font-weight: 600;
}

/* Credit Packages Grid */
.fhc-credit-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.fhc-credit-package {
    background: var(--white);
    border: 2px solid var(--grey-200);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fhc-credit-package:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(82, 113, 255, 0.15);
    border-color: var(--primary-blue);
}

.fhc-credit-package.fhc-popular {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(82, 113, 255, 0.2);
}

.fhc-popular-badge {
    position: absolute;
    top: 15px;
    right: -45px;
    background: var(--green);
    color: var(--white);
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    font-family: var(--font-heading);
    line-height: 1;
}

.fhc-credit-packages .fhc-package-header h2 {
    font-size: 30px;
    color: var(--black);
    margin: 0 0 8px 0;
}

.fhc-package-desc {
    color: var(--grey-700);
    font-size: 16px;
    margin: 0 0 15px 0;
}

.fhc-package-pricing {
    margin: 10px 0;
}

.fhc-package-price {
    margin-bottom: 10px;
}

.fhc-currency {
    font-size: 20px;
    color: var(--grey-700);
    font-weight: 600;
    vertical-align: top;
    margin-right: 4px;
}

.fhc-amount {
    font-size: 30px;
    color: var(--primary-blue);
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
}

.fhc-per-job {
    font-size: 14px;
    color: var(--grey-500);
    margin: 0;
}

.fhc-package-savings {
    margin: 20px 0;
}

.fhc-save-badge {
    background: var(--green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.fhc-package-features ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
}

.fhc-package-features li {
    padding: 8px 0;
    color: var(--grey-900);
    font-size: 15px;
    line-height: 1.6;
}
.fhc-buy-package img {
    display: none !important;
}
button.fhc-btn.fhc-btn-primary.fhc-btn-large.fhc-buy-package {
    width: 100%;
}
/* Comparison Table */
.fhc-credits-comparison {
    background: var(--grey-50);
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 40px;
	text-align: center;
}

.fhc-credits-comparison h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--black);
}

.fhc-comparison-table {
    overflow-x: auto;
}

.fhc-comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.fhc-comparison-table th {
    background: var(--primary-blue);
    color: var(--white);
    padding: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.fhc-comparison-table td {
    padding: 15px;
    border-bottom: 1px solid var(--grey-200);
    text-align: center;
    color: var(--grey-900);
}

.fhc-comparison-table tr:hover {
    background: var(--grey-50);
}

.fhc-comparison-table .fhc-highlight {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 14px;
}

.fhc-comparison-table .fhc-savings-cell {
    color: var(--green);
    font-weight: 700;
    font-size: 14px;
}

/* FAQ Section */
.fhc-credits-faq {
    text-align: center;
    margin: 0 auto;
}

.fhc-credits-faq h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--black);
}

.fhc-faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-blue);
	box-shadow: 0px 0px 2.3px 0px #00000040;
    text-align: left;
}

.fhc-faq-item h4 {
    color: var(--black);
    margin: 0;
    font-size: 18px;
    font-family: var(--font-heading);
}

.fhc-faq-item p {
    color: var(--grey-700);
    margin: 15px 0 0;
    line-height: 1.7;
}

/* Credit Balance Card (Dashboard) */
.fhc-credit-balance-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #3d5ff5 100%);
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 24px rgba(82, 113, 255, 0.3);
}

.fhc-credit-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fhc-credit-icon {
    font-size: 48px;
}

.fhc-credit-details h3 {
    margin: 0 0 10px 0;
    font-size: 16px !important;
    opacity: 0.9;
    letter-spacing: 0.5px;
    color: #ffffff !important;
}

.fhc-credit-number {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
}

.fhc-credit-amount {
    font-size: 40px;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
}

.fhc-credit-text {
    font-size: 20px;
    font-weight: 600;
}

.fhc-credit-message {
    margin: 0;
    font-size: 15px;
    opacity: 0.95;
}

.fhc-credit-actions {
    display: flex;
    gap: 12px;
}

.fhc-credit-actions .fhc-btn {
    white-space: nowrap;
}
.fhc-credit-actions a.fhc-btn.fhc-btn-primary {
    background-color: transparent;
    border: 2px solid #ffffff !important;
}
.fhc-credit-actions a.fhc-btn.fhc-btn-primary:hover {
    background-color: #ffffff;
    color: var(--primary-blue);
}
/* Payment Options (Job Submission) */
.fhc-payment-options {
    margin: 30px 0;
}

.fhc-payment-choice {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.fhc-radio-option {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border: 2px solid var(--grey-200);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fhc-radio-option:hover {
    border-color: var(--primary-blue);
    background: #E0E7FF;
}

.fhc-radio-option.fhc-recommended {
    border-color: var(--green);
    background: #DCFCE7;
}

.fhc-radio-option input[type="radio"] {
    margin-right: 15px;
    margin-top: 4px;
    width: 20px;
    height: 20px;
}

.fhc-option-content {
    flex: 1;
}

.fhc-option-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--black);
    margin-bottom: 6px;
}

.fhc-option-desc {
    display: block;
    font-size: 14px;
    color: var(--grey-700);
}

.fhc-badge {
    background: var(--green);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 10px;
    text-transform: uppercase;
}

.fhc-price-badge {
    background: var(--orange);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    margin-left: 10px;
}

.fhc-credit-hint {
    background: #E0E7FF;
    padding: 12px 16px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 14px;
    color: var(--grey-900);
}

.fhc-credit-hint a {
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
}

.fhc-credit-hint a:hover {
    text-decoration: underline;
}

/* Payment Badge in Dashboard */
.fhc-payment-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}

.fhc-payment-credit {
    background: #E0E7FF;
    color: var(--primary-blue);
}

/* Credit History Table */
.fhc-credit-history {
    margin-top: 40px;
}

.fhc-credit-history h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--black);
    font-family: var(--font-heading);
}

.fhc-history-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(10, 26, 47, 0.05);
	border: 1px solid #ffffff;
}

.fhc-history-table th {
    background: var(--grey-50);
    padding: 14px;
    text-align: left;
    font-weight: 700;
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
	border: 1px solid var(--grey-200) !important;
}

.fhc-history-table td {
    padding: 14px;
    border: 1px solid var(--grey-200);
}
.fhc-comparison-table td, .fhc-comparison-table th {
    border: 1px solid var(--grey-200);
}
.fhc-history-purchase {
    color: var(--green);
    font-weight: 600;
}

.fhc-history-used {
    color: var(--grey-700);
    font-weight: 600;
}

.fhc-credit-positive {
    color: var(--green);
    font-weight: 700;
    font-size: 16px;
}

.fhc-credit-negative {
    color: var(--grey-700);
    font-weight: 700;
    font-size: 16px;
}
div#fhc-job-details-step {
    border-radius: 16px;
    padding: 60px 40px;
    box-shadow: 0px 6px 26px 0px rgba(10, 10, 10, 0.08);
    margin-bottom: 20px;
}
div#fhc-email-check-step, #fhc-login-step {
    border-radius: 16px;
    padding: 60px 40px;
    box-shadow: 0px 6px 26px 0px rgba(10, 10, 10, 0.08);
    margin-bottom: 20px;
    max-width: 600px;
    margin: 0 auto;
}
#fhc-job-submission-form h3:first-of-type {
    margin-top: 0;
}
.fhc-notice p {
    margin: 0;
}
#fhc-login-step button {
    width: 100%;
}
p.forgot_link {
    display: flex;
    justify-content: space-between;
    margin: 0;
    font-size: 14px;
}
p.forgot_link a:hover {
    color: var(--e-global-color-primary);
}
.colm_one_3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.colm_one_2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.colm_one_3 p {
    margin: 0;
}
/* Responsive Credits */
@media (max-width: 1024px) {
	.colm_one_3, .colm_one_2 {
		grid-template-columns: 1fr;
	}
	div#fhc-job-details-step,
	div#fhc-email-check-step, #fhc-login-step{
		padding: 40px 20px;
	}
}
@media (max-width: 768px) {
    .fhc-credit-packages {
        grid-template-columns: 1fr;
    }
    
    .fhc-credit-balance-card {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .fhc-credit-info {
        flex-direction: column;
        text-align: center;
    }
    
    .fhc-credit-actions {
        flex-direction: column;
		width: 100%;
    }
    .fhc-dashboard-actions a {
		width: 100%;
		text-align: center;
	}
    .fhc-comparison-table {
        font-size: 13px;
    }
    
    .fhc-comparison-table th,
    .fhc-comparison-table td {
        padding: 10px 8px;
    }
	.fhc-credits-comparison {
		padding: 50px 20px;
	}
	.fhc-buy-credits-container h2 {
		margin-bottom: 15px;
	}
	.fhc-employer-dashboard h2 {
		text-align: center;
	}
	.fhc-credit-number {
		justify-content: center;
	}
}
