/* Show Job Page Base */
  .show-job-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #f5f4f8 100%);
    min-height: 100vh;
  }

  /* Hero Section - Vibrant Purple-Blue Gradient */
  .show-job-hero {
    background: linear-gradient(135deg, #143a6b 0%, #1a4f90 30%, #1e568f 60%, #143a6b 100%);
    padding-top: 110px;
    padding-bottom: 60px;
    position: relative;
  }

  .show-job-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(26, 79, 144, 0.2), transparent 60%),
                radial-gradient(circle at bottom right, rgba(125, 161, 76, 0.18), transparent 55%);
    z-index: 0;
    pointer-events: none;
  }

  .show-job-hero .container {
    position: relative;
    z-index: 2;
  }

  .show-job-hero-intro {
    position: relative;
    border-radius: 28px;
    padding: 2.75rem 2.5rem;
    background: linear-gradient(135deg, 
      #1A4F90 0%, 
      #2a669f 30%,
      #5f8c3b 60%,
      #7DA14C 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 24px 60px rgba(15, 12, 32, 0.6), 
                0 0 0 1px rgba(255, 255, 255, 0.15) inset,
                0 8px 32px rgba(26, 79, 144, 0.4),
                0 4px 16px rgba(125, 161, 76, 0.3);
    height: 100%;
    overflow: hidden;
  }

  .show-job-hero-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
  }

  .show-job-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
  }

  .show-job-page .caption-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .show-job-page .caption-title {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .show-job-page .caption-text {
    color: rgba(255, 255, 255, 0.98);
    max-width: 100%;
    line-height: 1.7;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  .text-white-75 {
    color: rgba(255, 255, 255, 0.75);
  }

  .breadcrumb-item a {
    color: white !important;
  }

  .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
  }

  /* Gradient Text */
  .gradient-text {
    background: linear-gradient(135deg, #1A4F90 0%, #7DA14C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .text-white-75 {
    color: rgba(255, 255, 255, 0.8);
  }

  /* Job Detail Card */
  .job-detail-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  /* Sidebar */
  .bg-gradient-primary {
    background: linear-gradient(135deg, #1A4F90 0%, #7DA14C 100%);
    position: relative;
  }

  .bg-gradient-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  }

  .job-sidebar {
    position: relative;
    z-index: 1;
  }

  /* Company Logo */
  .company-logo-wrapper {
    padding: 20px;
  }

  .company-logo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 16px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    background: white;
    padding: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  /* Job Type Badge */
  .job-type-badge {
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
  }

  /* Info List */
  .job-info-list {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .info-item {
    display: flex;
    align-items: flex-start;
  }

  .info-item i {
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 24px;
  }

  .info-item strong {
    display: block;
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
  }

  .info-item p {
    font-size: 0.95rem;
    margin: 0;
  }

  /* Content Blocks */
  .content-block {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 2rem;
  }

  .content-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .block-header {
    display: flex;
    align-items: center;
  }

  .block-header i {
    font-size: 1.5rem;
  }

  .block-content {
    padding-left: 2.5rem;
  }

  .block-content p {
    font-size: 1.05rem;
  }

  /* Tag List */
  .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .tag-item {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 79, 144, 0.1), rgba(125, 161, 76, 0.1));
    color: #1A4F90;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .tag-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 79, 144, 0.2);
  }

  /* Detail Grid */
  .detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .detail-item.full-width {
    grid-column: 1 / -1;
  }

  .detail-item i {
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1A4F90 0%, #7DA14C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .detail-item strong {
    display: block;
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
  }

  .detail-item p {
    margin: 0;
    font-size: 1rem;
    color: #212529;
  }

  /* Button */
  .btn-light {
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hover-lift:hover {
    transform: translateY(-3px);
  }

  /* Animations */
  @keyframes animate-fade-in {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes animate-fade-in-up {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

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

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

  /* Responsive Design */
  @media (max-width: 991px) {
    .show-job-hero {
      padding-top: 100px;
      padding-bottom: 60px;
    }

    .display-4 {
      font-size: 2rem !important;
    }

    .shape {
      display: none;
    }

    .job-detail-card .row.g-0 {
      flex-direction: column;
    }

    .bg-gradient-primary {
      border-radius: 1rem 1rem 0 0;
    }

    .job-content-section {
      border-radius: 0 0 1rem 1rem;
    }
  }

  @media (max-width: 575px) {
    .detail-grid {
      grid-template-columns: 1fr;
    }

    .detail-item.full-width {
      grid-column: 1;
    }

    .block-content {
      padding-left: 0;
    }

    .company-logo {
      width: 100px;
      height: 100px;
    }
  }


  /* Toast Notification Styles */
  .toast {
    min-width: 350px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: none;
  }

  .toast-header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1rem;
    font-weight: 600;
  }

  .toast-body {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .text-bg-success {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    color: white;
  }

  .text-bg-danger {
    background: linear-gradient(135deg, #dc3545, #c82333) !important;
    color: white;
  }

  .text-bg-warning {
    background: linear-gradient(135deg, #ffc107, #ffb300) !important;
    color: #212529;
  }

  .text-bg-info {
    background: linear-gradient(135deg, #17a2b8, #138496) !important;
    color: white;
  }

  .toast-header {
    color: white;
  }

  .text-bg-warning .toast-header {
    color: #212529;
  }

  .toast-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.9;
  }

  .text-bg-warning .toast-header .btn-close {
    filter: none;
    opacity: 0.5;
  }

  .toast-header .btn-close:hover {
    opacity: 1;
  }

  .toast-header i {
    font-size: 1.1rem;
  }

  @media (max-width: 575px) {
    .toast {
      min-width: min(90vw, 300px);
      width: min(90vw, 300px);
    }
  }