/**
 * India Jobs Search Engine - Custom Stylesheet
 * Emerald theme with Bootstrap 5.3 overrides
 * Author: India Jobs Search Engine
 * Version: 1.0.0
 */

/* =============================================
   CSS Custom Properties (Root Variables)
   ============================================= */
:root {
    /* Primary Emerald Palette */
    --emerald-50:  #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10B981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;

    /* Teal Accent */
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;

    /* Job Type Badge Colors */
    --badge-govt:         #16a34a;
    --badge-private:      #2563eb;
    --badge-remote:       #7c3aed;
    --badge-internship:   #d97706;
    --badge-contract:     #ea580c;
    --badge-freelance:    #db2777;
    --badge-apprenticeship: #0d9488;

    /* Status Colors */
    --color-success: #059669;
    --color-warning: #d97706;
    --color-danger:  #dc2626;
    --color-info:    #2563eb;

    /* Layout */
    --header-height: 56px;
    --footer-bg: #1a1a2e;
    --body-bg: #f8faf9;
    --card-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --card-shadow-hover: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);

    /* Override Bootstrap Primary */
    --bs-primary: #059669;
    --bs-primary-rgb: 5, 150, 105;
    --bs-link-color: #059669;
    --bs-link-hover-color: #047857;
}

/* =============================================
   Base & Reset
   ============================================= */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--body-bg);
    color: #1f2937;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    flex: 1;
}

a {
    color: var(--bs-link-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--bs-link-hover-color);
}

/* =============================================
   Bootstrap Primary Color Override
   ============================================= */
.btn-primary {
    --bs-btn-bg: var(--emerald-600);
    --bs-btn-border-color: var(--emerald-600);
    --bs-btn-hover-bg: var(--emerald-700);
    --bs-btn-hover-border-color: var(--emerald-700);
    --bs-btn-active-bg: var(--emerald-800);
    --bs-btn-active-border-color: var(--emerald-800);
    --bs-btn-disabled-bg: var(--emerald-400);
    --bs-btn-disabled-border-color: var(--emerald-400);
}

.btn-outline-primary {
    --bs-btn-color: var(--emerald-600);
    --bs-btn-border-color: var(--emerald-600);
    --bs-btn-hover-bg: var(--emerald-600);
    --bs-btn-hover-border-color: var(--emerald-600);
    --bs-btn-active-bg: var(--emerald-700);
    --bs-btn-active-border-color: var(--emerald-700);
}

.bg-primary {
    background-color: var(--emerald-600) !important;
}

.text-primary {
    color: var(--emerald-600) !important;
}

.border-primary {
    border-color: var(--emerald-600) !important;
}

.alert-primary {
    --bs-alert-bg: var(--emerald-50);
    --bs-alert-border-color: var(--emerald-200);
    --bs-alert-color: var(--emerald-800);
}

/* =============================================
   Header / Navbar
   ============================================= */
header .navbar {
    background: linear-gradient(135deg, var(--emerald-700), var(--teal-600)) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

header .navbar-brand {
    font-size: 1.15rem;
    letter-spacing: -0.3px;
}

header .nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem !important;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

header .nav-link:hover,
header .nav-link.active {
    background-color: rgba(255,255,255,0.15);
    color: #fff !important;
}

header .nav-link.active {
    background-color: rgba(255,255,255,0.2);
    font-weight: 600;
}

/* =============================================
   Stats Cards
   ============================================= */
.stats-card {
    border-left: 4px solid;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
}

.stats-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.stats-card.border-emerald  { border-left-color: var(--emerald-600); }
.stats-card.border-blue     { border-left-color: var(--badge-private); }
.stats-card.border-amber    { border-left-color: var(--badge-internship); }
.stats-card.border-rose     { border-left-color: var(--badge-freelance); }

.stats-card .stats-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.stats-card .stats-value {
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.2;
}

.stats-card .stats-label {
    font-size: 0.82rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* =============================================
   Search Form
   ============================================= */
.search-card {
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border: none;
}

.search-card .card-header {
    background: linear-gradient(135deg, var(--emerald-600), var(--teal-600));
    color: #fff;
    border-radius: 12px 12px 0 0 !important;
    padding: 1rem 1.25rem;
    font-weight: 600;
}

.search-card .form-label {
    font-weight: 500;
    font-size: 0.85rem;
    color: #374151;
    margin-bottom: 0.35rem;
}

.search-card .form-control,
.search-card .form-select {
    border-radius: 8px;
    border-color: #d1d5db;
    font-size: 0.9rem;
    padding: 0.55rem 0.85rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-card .form-control:focus,
.search-card .form-select:focus {
    border-color: var(--emerald-400);
    box-shadow: 0 0 0 3px rgba(5,150,105,0.15);
}

.btn-search {
    background-color: var(--emerald-600);
    border-color: var(--emerald-600);
    color: #fff;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-search:hover {
    background-color: var(--emerald-700);
    border-color: var(--emerald-700);
    color: #fff;
    transform: translateY(-1px);
}

.btn-search:active {
    transform: translateY(0);
}

.btn-clear {
    background-color: #f3f4f6;
    border-color: #d1d5db;
    color: #374151;
    font-weight: 500;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.btn-clear:hover {
    background-color: #e5e7eb;
    color: #1f2937;
}

/* =============================================
   Job Type Badges
   ============================================= */
.badge-govt           { background-color: var(--badge-govt); color: #fff; }
.badge-private        { background-color: var(--badge-private); color: #fff; }
.badge-remote         { background-color: var(--badge-remote); color: #fff; }
.badge-internship     { background-color: var(--badge-internship); color: #fff; }
.badge-contract       { background-color: var(--badge-contract); color: #fff; }
.badge-freelance      { background-color: var(--badge-freelance); color: #fff; }
.badge-apprenticeship { background-color: var(--badge-apprenticeship); color: #fff; }

.badge-govt,
.badge-private,
.badge-remote,
.badge-internship,
.badge-contract,
.badge-freelance,
.badge-apprenticeship {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.35em 0.65em;
    border-radius: 6px;
    letter-spacing: 0.2px;
    text-transform: capitalize;
}

/* =============================================
   Job Category Cards
   ============================================= */
.category-card {
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    color: inherit;
}

.category-card .card-body {
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.category-card .category-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 0.85rem;
}

.category-card .category-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.category-card .category-count {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Category color accents */
.category-govt      { border-top: 3px solid var(--badge-govt); }
.category-govt .category-icon { background-color: #dcfce7; color: var(--badge-govt); }

.category-private   { border-top: 3px solid var(--badge-private); }
.category-private .category-icon { background-color: #dbeafe; color: var(--badge-private); }

.category-remote    { border-top: 3px solid var(--badge-remote); }
.category-remote .category-icon { background-color: #ede9fe; color: var(--badge-remote); }

.category-intern    { border-top: 3px solid var(--badge-internship); }
.category-intern .category-icon { background-color: #fef3c7; color: var(--badge-internship); }

.category-contract  { border-top: 3px solid var(--badge-contract); }
.category-contract .category-icon { background-color: #ffedd5; color: var(--badge-contract); }

.category-apprent   { border-top: 3px solid var(--badge-apprenticeship); }
.category-apprent .category-icon { background-color: #ccfbf1; color: var(--badge-apprenticeship); }

/* =============================================
   Results Table
   ============================================= */
.results-card {
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border: none;
}

.results-card .card-header {
    background: #fff;
    border-bottom: 2px solid var(--emerald-100);
    border-radius: 12px 12px 0 0 !important;
    padding: 1rem 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jobs-table {
    font-size: 0.88rem;
}

.jobs-table thead th {
    background-color: var(--emerald-50);
    color: var(--emerald-800);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-bottom: 2px solid var(--emerald-200);
    padding: 0.75rem;
    white-space: nowrap;
}

.jobs-table tbody tr {
    transition: background-color 0.15s ease;
}

.jobs-table tbody tr:hover {
    background-color: var(--emerald-50);
}

.jobs-table tbody td {
    padding: 0.7rem 0.75rem;
    vertical-align: middle;
    border-bottom-color: #f3f4f6;
}

.jobs-table .job-title {
    font-weight: 500;
    color: #1f2937;
    max-width: 260px;
}

.jobs-table .org-name {
    color: #6b7280;
    font-size: 0.82rem;
}

.jobs-table .salary-text {
    font-weight: 600;
    color: var(--emerald-700);
    white-space: nowrap;
}

.jobs-table .last-date {
    white-space: nowrap;
}

.jobs-table .last-date.expired {
    color: var(--color-danger);
    text-decoration: line-through;
}

.jobs-table .last-date.urgent {
    color: var(--color-danger);
    font-weight: 600;
}

.jobs-table .btn-view {
    padding: 0.25rem 0.65rem;
    font-size: 0.78rem;
    border-radius: 6px;
}

/* =============================================
   Mobile Card Layout for Jobs
   ============================================= */
@media (max-width: 991.98px) {
    .jobs-table thead { display: none; }

    .jobs-table tbody tr {
        display: block;
        background: #fff;
        border-radius: 10px;
        box-shadow: var(--card-shadow);
        margin-bottom: 1rem;
        padding: 1rem;
        border: 1px solid #e5e7eb;
    }

    .jobs-table tbody tr:hover {
        background: #fff;
        box-shadow: var(--card-shadow-hover);
    }

    .jobs-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0.35rem 0;
        border: none;
    }

    .jobs-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 0.78rem;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        flex-shrink: 0;
        margin-right: 1rem;
    }

    .jobs-table tbody td:last-child {
        justify-content: center;
        padding-top: 0.75rem;
        border-top: 1px solid #f3f4f6;
        margin-top: 0.5rem;
    }

    .jobs-table tbody td:last-child::before {
        display: none;
    }
}

/* =============================================
   Job Detail Modal
   ============================================= */
.job-modal .modal-header {
    background: linear-gradient(135deg, var(--emerald-600), var(--teal-600));
    color: #fff;
    border: none;
}

.job-modal .modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.job-modal .modal-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.job-modal .modal-body {
    padding: 1.5rem;
}

.job-modal .detail-section {
    margin-bottom: 1.5rem;
}

.job-modal .detail-section:last-child {
    margin-bottom: 0;
}

.job-modal .section-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--emerald-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--emerald-100);
}

.job-modal .detail-row {
    display: flex;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.job-modal .detail-label {
    font-weight: 600;
    color: #4b5563;
    min-width: 140px;
    flex-shrink: 0;
}

.job-modal .detail-value {
    color: #1f2937;
}

.job-modal .skill-badge {
    background-color: var(--emerald-50);
    color: var(--emerald-700);
    border: 1px solid var(--emerald-200);
    font-size: 0.78rem;
    padding: 0.25em 0.65em;
    border-radius: 6px;
    font-weight: 500;
    margin: 0.15rem;
    display: inline-block;
}

.job-modal .benefit-badge {
    background-color: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
    font-size: 0.78rem;
    padding: 0.25em 0.65em;
    border-radius: 6px;
    font-weight: 500;
    margin: 0.15rem;
    display: inline-block;
}

.job-modal .date-expired {
    color: var(--color-danger);
    font-weight: 700;
}

.job-modal .btn-apply {
    background-color: var(--emerald-600);
    border-color: var(--emerald-600);
    color: #fff;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
}

.job-modal .btn-apply:hover {
    background-color: var(--emerald-700);
    border-color: var(--emerald-700);
    color: #fff;
}

.job-modal .btn-pdf {
    background-color: var(--color-danger);
    border-color: var(--color-danger);
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.job-modal .source-info {
    font-size: 0.8rem;
    color: #9ca3af;
    font-style: italic;
}

.job-modal .modal-body .spinner-border {
    color: var(--emerald-500);
}

/* =============================================
   Pagination
   ============================================= */
.pagination .page-link {
    color: var(--emerald-700);
    border-color: #e5e7eb;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 0.45rem 0.85rem;
}

.pagination .page-link:hover {
    background-color: var(--emerald-50);
    border-color: var(--emerald-200);
    color: var(--emerald-800);
}

.pagination .page-item.active .page-link {
    background-color: var(--emerald-600);
    border-color: var(--emerald-600);
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    color: #9ca3af;
}

/* =============================================
   Admin Page
   ============================================= */
.admin-card {
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border: none;
}

.admin-card .card-header {
    font-weight: 600;
    border-radius: 12px 12px 0 0 !important;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item .stat-label {
    font-size: 0.88rem;
    color: #4b5563;
}

.stat-item .stat-number {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--emerald-700);
}

.source-status {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3em 0.7em;
    border-radius: 20px;
}

.source-status.active {
    background-color: #dcfce7;
    color: #166534;
}

.source-status.inactive {
    background-color: #fee2e2;
    color: #991b1b;
}

/* =============================================
   Footer
   ============================================= */
footer {
    background-color: var(--footer-bg) !important;
}

footer .footer-links li {
    padding: 0.2rem 0;
    font-size: 0.9rem;
}

footer .footer-links a:hover {
    color: var(--emerald-400) !important;
}

/* =============================================
   API Key Management Styles
   ============================================= */
.api-key-masked,
.api-key-full {
    font-size: 0.82rem;
    padding: 2px 6px;
    background: #f3f4f6;
    border-radius: 4px;
    word-break: break-all;
}

.api-key-full {
    background: #fef3c7;
    border: 1px solid #fde68a;
}

@keyframes spinKey {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.spin {
    animation: spinKey 1s linear infinite;
}

/* =============================================
   AI Search Styles
   ============================================= */
:root {
    --ai-color: #8b5cf6;
    --ai-color-light: #ede9fe;
    --ai-color-dark: #6d28d9;
}

.btn-ai-search {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    border-color: #8b5cf6;
    color: #fff;
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-ai-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn-ai-search:hover {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    border-color: #7c3aed;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.35);
}

.btn-ai-search:hover::before {
    left: 100%;
}

.btn-ai-search:active {
    transform: translateY(0);
}

.btn-ai-search:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none;
}

.text-ai {
    color: var(--ai-color) !important;
}

.bg-ai {
    background-color: var(--ai-color) !important;
    color: #fff;
}

.ai-results-card {
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border: 2px solid var(--ai-color-light);
    overflow: hidden;
}

.ai-results-card .card-header {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe) !important;
    border-bottom: 2px solid #c4b5fd;
    border-radius: 0 !important;
    padding: 1rem 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.spinner-ai {
    color: var(--ai-color) !important;
}

@keyframes aiPulse {
    0%   { opacity: 1; }
    50%  { opacity: 0.6; }
    100% { opacity: 1; }
}

.ai-results-card #aiSearchLoading h5 {
    animation: aiPulse 2s ease-in-out infinite;
}

/* AI search table with purple accent */
.ai-results-card .jobs-table thead th {
    background-color: var(--ai-color-light);
    color: var(--ai-color-dark);
    border-bottom-color: #c4b5fd;
}

.ai-results-card .jobs-table tbody tr:hover {
    background-color: #faf5ff;
}

/* AI badge on job type */
.badge-ai-source {
    background-color: var(--ai-color-light);
    color: var(--ai-color-dark);
    font-size: 0.7rem;
    padding: 0.15em 0.5em;
    border-radius: 4px;
    border: 1px solid #c4b5fd;
}

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

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

@keyframes pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.animate-fade-in {
    animation: fadeIn 0.4s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Staggered fade-in for cards */
.stagger-1 { animation-delay: 0.05s; }
.stagger-2 { animation-delay: 0.1s; }
.stagger-3 { animation-delay: 0.15s; }
.stagger-4 { animation-delay: 0.2s; }
.stagger-5 { animation-delay: 0.25s; }
.stagger-6 { animation-delay: 0.3s; }

/* =============================================
   Custom Scrollbar
   ============================================= */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
}

/* =============================================
   Utility Classes
   ============================================= */
.text-emerald {
    color: var(--emerald-600) !important;
}

.bg-emerald-light {
    background-color: var(--emerald-50) !important;
}

.bg-emerald {
    background-color: var(--emerald-600) !important;
}

.border-emerald {
    border-color: var(--emerald-600) !important;
}

.fw-semibold {
    font-weight: 600;
}

.rounded-lg {
    border-radius: 12px;
}

.shadow-sm-custom {
    box-shadow: var(--card-shadow);
}

/* =============================================
   Loading / Spinner
   ============================================= */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: inherit;
}

.spinner-emerald {
    color: var(--emerald-500);
}

/* =============================================
   Responsive Adjustments
   ============================================= */
@media (max-width: 767.98px) {
    .stats-card .stats-value {
        font-size: 1.3rem;
    }

    .stats-card .stats-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .search-card .card-body {
        padding: 1rem;
    }

    .category-card .card-body {
        padding: 1.15rem 1rem;
    }

    .category-card .category-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .job-modal .detail-row {
        flex-direction: column;
        gap: 0.15rem;
    }

    .job-modal .detail-label {
        min-width: unset;
    }
}

@media (max-width: 575.98px) {
    .stats-card {
        margin-bottom: 0.75rem;
    }

    .btn-search,
    .btn-clear {
        width: 100%;
    }
}

/* =============================================
   Print Styles
   ============================================= */
@media print {
    header, footer, .btn, .no-print {
        display: none !important;
    }

    body {
        background: #fff;
    }

    .card {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }

    .jobs-table thead {
        display: table-header-group !important;
    }

    .jobs-table tbody tr {
        display: table-row !important;
    }
}
