/* =========================================
   1. GLOBAL & TYPOGRAPHY
   ========================================= */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

body {
  font-family: "Inter", sans-serif;
  background-color: #f4f6f9;
  color: #212529;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}
a {
  text-decoration: none;
}

/* =========================================
   2. NAVBAR & FOOTER
   ========================================= */
.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #0d6efd;
  letter-spacing: -0.5px;
}
.navbar-brand span {
  color: #212529;
}
.nav-link {
  font-weight: 500;
  color: #4a4a4a;
  transition: color 0.2s ease;
}
.nav-link:hover,
.nav-link.active {
  color: #0d6efd;
}
.footer-link {
  color: #6c757d;
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.95rem;
}
.footer-link:hover {
  color: #0d6efd;
  text-decoration: underline;
}

/* =========================================
   3. COMMON COMPONENTS
   ========================================= */
/* Badges */
.badge-soft {
  padding: 0.5em 0.9em;
  font-weight: 600;
  border-radius: 6px;
  font-size: 0.85rem;
}
.badge-soft-primary {
  background-color: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
}
.badge-soft-success {
  background-color: rgba(25, 135, 84, 0.1);
  color: #198754;
}
.badge-soft-secondary {
  background-color: #e9ecef;
  color: #6c757d;
}

/* Buttons */
.btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
}
.btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
}

/* =========================================
   4. HOME PAGE STYLES
   ========================================= */
.hero-section {
  background-color: #eef2ff;
  padding: 80px 0;
  border-bottom: 1px solid #e0e7ff;
}
.category-card {
  transition: all 0.3s ease;
  border: 1px solid #eee;
  background: #fff;
  cursor: pointer;
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: #0d6efd;
}
.icon-box {
  width: 50px;
  height: 50px;
  background-color: #f0f7ff;
  color: #0d6efd;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.step-circle {
  width: 70px;
  height: 70px;
  background-color: #0d6efd;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem auto;
}

/* =========================================
   5. JOBS PAGE (Listing & Cards)
   ========================================= */
/* Filter Section (Jobs Page) */
.filter-section {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* Job Card */
.job-card {
  transition: all 0.2s ease-in-out;
  border: 1px solid #e5e5e5;
  background-color: #ffffff;
  border-radius: 8px;
}
.job-card:hover {
  border-color: #0d6efd;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.1);
  transform: translateY(-2px);
}
.company-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background-color: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #6c757d;
  font-weight: 600;
}
.job-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #212529;
  text-decoration: none;
}
.job-title:hover {
  color: #0d6efd;
  text-decoration: underline;
}

/* =========================================
   6. JOB DETAIL PAGE
   ========================================= */
.content-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
}
.job-description p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.job-description ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}
.job-description li {
  margin-bottom: 0.5rem;
  color: #555;
  line-height: 1.6;
}

/* Sidebar */
.sidebar-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  margin-bottom: 24px;
  overflow: hidden;
}
.sidebar-card .card-header {
  background-color: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 24px;
  font-weight: 600;
}
.company-logo-box {
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #6c757d;
  border: 1px solid #eee;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media (min-width: 992px) {
  .sticky-sidebar {
    position: sticky;
    top: 90px;
  }
}

/* =========================================
   7. AUTH PAGES (Login / Register)
   ========================================= */
/* Auth Center Helper */
.auth-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}
.auth-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  padding: 2.5rem;
  width: 100%;
}
.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #6c757d;
}
.auth-footer a {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 600;
}

/* Role Selector (Register) */
.role-selector input[type="radio"] {
  display: none;
}
.role-card {
  border: 1px solid #e0e6ed;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}
.role-card:hover {
  border-color: #0d6efd;
  background-color: #f8fbff;
}
.role-icon {
  font-size: 1.5rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
  display: block;
}
.role-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: #344767;
  display: block;
}

/* Active Role */
.role-selector input[type="radio"]:checked + .role-card {
  border-color: #0d6efd;
  background-color: #eff6ff;
  box-shadow: 0 0 0 1px #0d6efd;
}
.role-selector input[type="radio"]:checked + .role-card .role-icon,
.role-selector input[type="radio"]:checked + .role-card .role-title {
  color: #0d6efd;
}

/* =========================================
   8. PREMIUM DASHBOARD STYLES
   ========================================= */

/* --- Sidebar Navigation --- */
.dashboard-nav-link {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: #555;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: all 0.2s ease;
}

.dashboard-nav-link i {
    margin-right: 12px;
    font-size: 1.2rem;
    color: #888;
    transition: color 0.2s ease;
}

/* Hover State */
.dashboard-nav-link:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.dashboard-nav-link:hover i {
    color: #0d6efd;
}

/* Active State */
.dashboard-nav-link.active {
    background-color: #eff6ff; /* Lightest Blue */
    color: #0d6efd;
    font-weight: 600;
}

.dashboard-nav-link.active i {
    color: #0d6efd;
}

/* --- Premium Stat Cards --- */
.stat-card {
    border: none;
    border-radius: 12px;
    background: #fff;
    padding: 24px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* Subtle Gradient Overlay on Hover */
.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
    opacity: 0.1;
    pointer-events: none;
}

.stat-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

/* --- Modern Table Styling --- */
.table-custom {
    margin-bottom: 0;
}

.table-custom th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    color: #888;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    padding: 16px;
}

.table-custom td {
    padding: 16px;
    vertical-align: middle;
    border-bottom: 1px solid #f5f5f5;
    color: #444;
}

.table-custom tr:last-child td {
    border-bottom: none;
}

/* --- Mobile Offcanvas Adjustments --- */
@media (max-width: 991.98px) {
    .offcanvas-lg {
        border-right: none !important;
    }
}

/* =========================================
   post-job.html - DASHBOARD & SIDEBAR STYLES
   ========================================= */

/* --- Sidebar Navigation Links --- */
.dashboard-nav-link {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: #555;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: all 0.2s ease;
}

.dashboard-nav-link i {
    margin-right: 12px;
    font-size: 1.2rem;
    color: #888;
    transition: color 0.2s ease;
}

/* Hover State */
.dashboard-nav-link:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.dashboard-nav-link:hover i {
    color: #0d6efd;
}

/* Active State */
.dashboard-nav-link.active {
    background-color: #eff6ff; /* Lightest Blue Background */
    color: #0d6efd; /* Primary Blue Text */
    font-weight: 600;
}

.dashboard-nav-link.active i {
    color: #0d6efd;
}

/* --- Mobile Offcanvas Adjustments --- */
@media (max-width: 991.98px) {
    /* Removes the right border on mobile so it looks cleaner */
    .offcanvas-lg {
        border-right: none !important;
    }
}

/* =========================================
   MY JOBS PAGE SPECIFIC STYLES
   ========================================= */

/* Table Header Styling */
.my-jobs-table thead th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: #6c757d;
    border-bottom: 2px solid #f1f3f5;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Table Row Styling */
.my-jobs-table tbody td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f8f9fa;
}

/* Job Meta Icons (Location/Clock icons) */
.job-meta-icon {
    font-size: 0.85rem;
    color: #adb5bd;
    margin-right: 3px;
    vertical-align: text-top;
}

/* Applicant Count Circle Badge */
.applicant-count-badge {
    width: 32px;
    height: 32px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
}

/* Specific Badge Colors for this page (if global doesn't cover all) */
.badge-soft-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Responsive Table Adjustments */
@media (max-width: 768px) {
    .my-jobs-table thead {
        display: none; /* Hide header on very small screens for card-like view if desired */
    }
    /* Note: For a simple table view, keeping scroll is often better than stacking */
}

/* =========================================
   APPLICATIONS PAGE SPECIFIC STYLES
   ========================================= */

/* --- Job Summary Card --- */
.job-summary-card {
    border-left: 4px solid #0d6efd; /* Blue accent on left */
}

.applicant-counter {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 10px 20px;
    display: inline-block;
    border: 1px solid #e9ecef;
}

/* --- Table Styles --- */
.app-table thead th {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #6c757d;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f3f5;
}

.app-table tbody td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    vertical-align: middle;
}

/* --- Avatar Circle (Initials) --- */
.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* --- Badge Colors (Specific to this page) --- */
.badge-soft-secondary {
    background-color: #e9ecef;
    color: #495057;
}

.badge-soft-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* --- Action Button Tweaks --- */
.btn-success.disabled, 
.btn-outline-danger.disabled {
    opacity: 0.5;
    pointer-events: none;
}


/* 
===============================================================================
   Super Admin Panel CSS: Start From Here............
===============================================================================
*/

/* =========================================
   ADMIN DASHBOARD STYLES (Matches Employer Style)
   ========================================= */

/* --- Sidebar Navigation --- */
.dashboard-nav-link {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: #555;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: all 0.2s ease;
}

.dashboard-nav-link i {
    margin-right: 12px;
    font-size: 1.2rem;
    color: #888;
    transition: color 0.2s ease;
}

/* Hover State */
.dashboard-nav-link:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.dashboard-nav-link:hover i {
    color: #0d6efd;
}

/* Active State */
.dashboard-nav-link.active {
    background-color: #eff6ff;
    color: #0d6efd;
    font-weight: 600;
}

.dashboard-nav-link.active i {
    color: #0d6efd;
}

/* --- Premium Stat Cards (Reused) --- */
.stat-card {
    border: none;
    border-radius: 12px;
    background: #fff;
    padding: 24px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
    opacity: 0.1;
    pointer-events: none;
}

.stat-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

/* --- Pending Action Cards --- */
.action-card {
    transition: transform 0.2s ease;
}
.action-card:hover {
    transform: translateY(-3px);
}

.warning-border {
    border-left: 5px solid #ffc107 !important;
}

.danger-border {
    border-left: 5px solid #dc3545 !important;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Mobile Offcanvas Fix --- */
@media (max-width: 991.98px) {
    .offcanvas-lg {
        border-right: none !important;
    }
}

/* =========================================
   ADMIN EMPLOYERS PAGE STYLES
   ========================================= */

/* --- Table Styles --- */
.admin-table thead th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: #6c757d;
    background-color: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.admin-table tbody td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid #f2f4f6;
}

/* Highlight Pending Row */
.table-warning-soft {
    background-color: #fff9e6 !important; /* Very light yellow */
}

/* --- Avatar/Logo Initials --- */
.avatar-initials {
    width: 40px;
    height: 40px;
    border-radius: 8px; /* Square with rounded corners for Companies */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* --- Status Badges (Soft Colors) --- */
.badge-soft-warning {
    background-color: rgba(255, 193, 7, 0.15);
    color: #856404;
}

.badge-soft-success {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.badge-soft-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.badge-soft-secondary {
    background-color: #e9ecef;
    color: #6c757d;
}

/* --- Action Buttons --- */
.btn-light {
    background-color: #fff;
    color: #6c757d;
    border-color: #dee2e6;
}

.btn-light:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
    border-color: #c5ccd3;
}

/* Ensure icons are centered in small buttons */
.btn-sm i {
    vertical-align: middle;
    line-height: 1;
}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
    .admin-table thead {
        /* Optional: Hide header on mobile if you prefer a card-stack look, 
           but horizontal scroll is usually safer for admin tables */
    }
}

/* =========================================
   ADMIN JOBS PAGE SPECIFIC STYLES
   ========================================= */

/* --- Table Styles --- */
.admin-jobs-table thead th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: #6c757d;
    background-color: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.admin-jobs-table tbody td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid #f2f4f6;
}

/* Highlight Pending Row (Light Yellow Background) */
.table-warning-soft {
    background-color: #fff9e6 !important;
}

/* --- Company Initials/Logo Placeholder --- */
.company-initials {
    width: 40px;
    height: 40px;
    border-radius: 8px; /* Square for Company Logos */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

/* --- Status Badges (Consistent with other admin pages) --- */
.badge-soft-warning {
    background-color: rgba(255, 193, 7, 0.15);
    color: #856404;
}

.badge-soft-success {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.badge-soft-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* --- Action Buttons --- */
.btn-light {
    background-color: #fff;
    color: #6c757d;
    border-color: #dee2e6;
}

.btn-light:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
    border-color: #c5ccd3;
}

/* Centering icons in small buttons */
.btn-sm i {
    vertical-align: middle;
    line-height: 1;
}

/* --- Responsive Tweaks --- */
@media (max-width: 576px) {
    /* Stack content nicely on very small screens if needed, 
       though table-responsive handles scrolling nicely */
    .company-initials {
        margin-right: 10px !important;
    }
}

/* =========================================
   ADMIN USERS MANAGEMENT STYLES
   ========================================= */

/* --- Table Headers --- */
.admin-users-table thead th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: #6c757d;
    background-color: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.admin-users-table tbody td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid #f2f4f6;
}

/* --- User Avatar (Initials) --- */
.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Circle for Users */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

/* --- Status Badges --- */
.badge-soft-success {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.badge-soft-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* --- Action Buttons & Dropdowns --- */
.btn-light {
    background-color: #fff;
    color: #6c757d;
    border-color: #dee2e6;
}

.btn-light:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
    border-color: #c5ccd3;
}

/* Dropdown styling tweak */
.dropdown-item {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.dropdown-item i {
    font-size: 1rem;
    vertical-align: middle;
}

/* --- Responsive Table Fixes --- */
@media (max-width: 576px) {
    .user-avatar {
        margin-right: 10px !important;
    }
}

/* =========================================
   ADMIN ANALYTICS PAGE SPECIFIC STYLES
   ========================================= */

/* --- Card Styles --- */
.analytics-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    /* Soft border logic is handled by Bootstrap utility classes 
       like .border-primary-subtle in HTML, overrides here if needed */
}

/* Hover Effect */
.analytics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* --- Icon Styles --- */
.analytics-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* --- Mobile Adjustments --- */
@media (max-width: 576px) {
    .analytics-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .display-6 {
        font-size: 2rem; /* Make numbers slightly smaller on mobile */
    }
}

/* =========================================
   EMPLOYEE DASHBOARD STYLES (Sidebar Version)
   ========================================= */

/* --- Sidebar Navigation (Matches Employer/Admin) --- */
.dashboard-nav-link {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: #555;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: all 0.2s ease;
}

.dashboard-nav-link i {
    margin-right: 12px;
    font-size: 1.2rem;
    color: #888;
    transition: color 0.2s ease;
}

.dashboard-nav-link:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.dashboard-nav-link:hover i {
    color: #0d6efd;
}

.dashboard-nav-link.active {
    background-color: #eff6ff;
    color: #0d6efd;
    font-weight: 600;
}

.dashboard-nav-link.active i {
    color: #0d6efd;
}

/* --- Card Styles --- */
.emp-stat-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background-color: #ffffff;
}

.emp-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}

.icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Avatar Circle (Navbar) --- */
.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* --- Table Styling --- */
.emp-table thead th {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #6c757d;
    background-color: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.emp-table tbody td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid #f2f4f6;
}

/* --- Status Badges (Soft) --- */
.badge-soft-warning { background-color: rgba(255, 193, 7, 0.15); color: #856404; }
.badge-soft-success { background-color: rgba(25, 135, 84, 0.1); color: #198754; }
.badge-soft-danger { background-color: rgba(220, 53, 69, 0.1); color: #dc3545; }

/* --- Mobile Fix --- */
@media (max-width: 991.98px) {
    .offcanvas-lg {
        border-right: none !important;
    }
}

/* =========================================
   EMPLOYEE PROFILE PAGE STYLES
   ========================================= */

/* --- Sidebar Navigation (Copied for consistency) --- */
.dashboard-nav-link {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: #555;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: all 0.2s ease;
}

.dashboard-nav-link i {
    margin-right: 12px;
    font-size: 1.2rem;
    color: #888;
    transition: color 0.2s ease;
}

.dashboard-nav-link:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.dashboard-nav-link:hover i {
    color: #0d6efd;
}

.dashboard-nav-link.active {
    background-color: #eff6ff;
    color: #0d6efd;
    font-weight: 600;
}

.dashboard-nav-link.active i {
    color: #0d6efd;
}

/* --- Avatar Circle (Navbar) --- */
.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* --- Profile Specific Styles --- */

/* Border Dashed for Resume Box */
.border-dashed {
    border-style: dashed !important;
    border-width: 2px !important;
}

/* Form Styling tweaks */
.form-control:focus, .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
}

.cursor-pointer {
    cursor: pointer;
}

/* Progress Bar */
.progress {
    background-color: #e9ecef;
    border-radius: 20px;
    overflow: hidden;
}

/* Card Headers */
.card-header {
    border-bottom: 1px solid #f0f2f5;
}

/* Mobile Offcanvas Fix */
@media (max-width: 991.98px) {
    .offcanvas-lg {
        border-right: none !important;
    }
}

/* =========================================
   SAVED JOBS PAGE STYLES
   ========================================= */

/* --- Sidebar Navigation (Copied for consistency) --- */
.dashboard-nav-link {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: #555;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: all 0.2s ease;
}

.dashboard-nav-link i {
    margin-right: 12px;
    font-size: 1.2rem;
    color: #888;
    transition: color 0.2s ease;
}

.dashboard-nav-link:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.dashboard-nav-link:hover i {
    color: #0d6efd;
}

.dashboard-nav-link.active {
    background-color: #eff6ff;
    color: #0d6efd;
    font-weight: 600;
}

.dashboard-nav-link.active i {
    color: #0d6efd;
}

/* --- Avatar Circle (Navbar) --- */
.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* --- Job Cards --- */
.job-card {
    transition: all 0.2s ease-in-out;
    background-color: #fff;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Company Logo Box */
.company-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

/* --- Badge Styles (Soft) --- */
.badge-soft-primary { background-color: rgba(13, 110, 253, 0.1); color: #0d6efd; }
.badge-soft-success { background-color: rgba(25, 135, 84, 0.1); color: #198754; }
.badge-soft-info { background-color: rgba(13, 202, 240, 0.1); color: #0dcaf0; }

/* --- Mobile Fix --- */
@media (max-width: 991.98px) {
    .offcanvas-lg {
        border-right: none !important;
    }
}

/* =========================================
   EMPLOYEE SETTINGS PAGE STYLES
   ========================================= */

/* --- Sidebar Navigation (Standardized) --- */
.dashboard-nav-link {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: #555;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: all 0.2s ease;
}

.dashboard-nav-link i {
    margin-right: 12px;
    font-size: 1.2rem;
    color: #888;
    transition: color 0.2s ease;
}

.dashboard-nav-link:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.dashboard-nav-link:hover i {
    color: #0d6efd;
}

.dashboard-nav-link.active {
    background-color: #eff6ff;
    color: #0d6efd;
    font-weight: 600;
}

.dashboard-nav-link.active i {
    color: #0d6efd;
}

/* --- Avatar Circle (Navbar) --- */
.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* --- Card & Form Styles --- */
.card-header {
    border-bottom: 1px solid #f0f2f5;
}

.form-control:focus, .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
}

/* Switch Toggles */
.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.form-check-switch .form-check-input {
    width: 2.5em;
    height: 1.25em;
    cursor: pointer;
}

/* Mobile Offcanvas Fix */
@media (max-width: 991.98px) {
    .offcanvas-lg {
        border-right: none !important;
    }
}


/* 
================================================
ADMIN USER DETAIL CSS
================================================
*/

/* =========================================
   ADMIN USER DETAIL PAGE STYLES
   ========================================= */

/* --- Profile Image --- */
.user-profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- Badges --- */
.badge-soft-success {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
    padding: 0.5em 1em;
    border-radius: 6px;
}

/* --- Timeline Styles --- */
.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #e9ecef;
}

.timeline-item:last-child {
    border-start-end-radius: 0;
}

/* --- Navigation Links (Shared) --- */
.dashboard-nav-link {
    display: flex; align-items: center; padding: 14px 20px;
    color: #555; font-weight: 500; text-decoration: none;
    border-radius: 8px; margin-bottom: 4px; transition: all 0.2s ease;
}
.dashboard-nav-link:hover { background-color: #f8f9fa; color: #0d6efd; }
.dashboard-nav-link i { margin-right: 12px; font-size: 1.2rem; color: #888; }
.dashboard-nav-link:hover i { color: #0d6efd; }
.dashboard-nav-link.active { background-color: #eff6ff; color: #0d6efd; font-weight: 600; }
.dashboard-nav-link.active i { color: #0d6efd; }