
  :root {
    --prussian-blue: #133650;
    --white: #ffffff;
    --raisin-black: #212227;
    --orange-peel: #ff9f1c;
  }

  .bg-prussian-blue {
    background-color: var(--prussian-blue);
  }

  .text-prussian-blue {
    color: var(--prussian-blue);
  }

  .bg-orange-peel {
    background-color: var(--orange-peel);
  }

  .text-orange-peel {
    color: var(--orange-peel);
  }

  .bg-raisin-black {
    background-color: var(--raisin-black);
  }

  .text-raisin-black {
    color: var(--raisin-black);
  }

  .job-header {
    background-color: var(--prussian-blue);
    padding: 3rem 0;
    color: var(--white);
  }

  .job-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
  }

  .job-type-badge {
    background-color: var(--orange-peel);
    color: var(--white);
    font-size: 0.875rem;
    padding: 0.35rem 0.75rem;
    border-radius: 0.25rem;
    display: inline-block;
    margin-bottom: 0.75rem;
  }

  .job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .job-meta-item {
    display: flex;
    align-items: center;
  }

  .job-meta-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    color: var(--orange-peel);
  }

  .job-content {
    padding: 2rem 0;
  }

  .job-description {
    margin-bottom: 2rem;
  }

  .job-section {
    margin-bottom: 2rem;
  }

  .job-section-title {
    color: var(--prussian-blue);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--orange-peel);
  }

  .job-section-content {
    color: var(--raisin-black);
    line-height: 1.6;
  }

  .job-sidebar {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1.5rem;
  }

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

  .job-sidebar-title {
    color: var(--prussian-blue);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .company-info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }

  .company-logo {
    width: 60px;
    height: 60px;
    border-radius: 0.25rem;
    margin-right: 1rem;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .company-logo-placeholder {
    color: var(--prussian-blue);
    font-size: 1.5rem;
    font-weight: 700;
  }

  .company-details {
    flex: 1;
  }

  .company-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
  }

  .apply-btn {
    display: block;
    width: 100%;
    background-color: var(--orange-peel);
    color: var(--white);
    border: none;
    border-radius: 0.25rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    margin-bottom: 1rem;
  }

  .apply-btn:hover {
    background-color: #e68b00;
    color: var(--white);
    text-decoration: none;
  }

  .save-btn {
    display: block;
    width: 100%;
    background-color: var(--white);
    color: var(--prussian-blue);
    border: 1px solid var(--prussian-blue);
    border-radius: 0.25rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .save-btn:hover {
    background-color: var(--prussian-blue);
    color: var(--white);
    text-decoration: none;
  }

  .save-btn.saved {
    background-color: var(--prussian-blue);
    color: var(--white);
  }

  .save-btn .icon {
    margin-right: 0.5rem;
  }

  .back-link {
    display: inline-flex;
    align-items: center;
    color: var(--orange-peel);
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 1rem;
  }

  .back-link:hover {
    color: #e68b00;
    text-decoration: none;
  }

  .back-link-icon {
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
  }

  .related-jobs {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
  }

  .related-jobs-title {
    color: var(--prussian-blue);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

  .related-job-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    cursor: pointer;
    position: relative;
  }

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

  .related-job-title {
    font-weight: 600;
    color: var(--prussian-blue);
    margin-right: 80px; /* Make space for job type badge */
  }

  .related-job-type {
    background-color: var(--orange-peel);
    color: var(--white);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    position: absolute;
    top: 15px;
    right: 15px;
  }

  .card-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
  }

  .card-info-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    flex-shrink: 0;
    color: var(--prussian-blue);
    opacity: 0.7;
  }

  .card-info-text {
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .job-footer {
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 0.75rem;
  }

  .job-card-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }

  .error-container {
    text-align: center;
    padding: 5rem 0;
  }

  .error-title {
    color: var(--prussian-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .error-message {
    color: var(--raisin-black);
    margin-bottom: 2rem;
  }

  .job-meta-badge {
    background-color: var(--orange-peel);
    color: var(--white);
    font-size: 0.875rem;
    padding: 0.35rem 0.75rem;
    border-radius: 0.25rem;
    display: inline-block;
  }

  .alert {
    margin-bottom: 1rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
  }

  .alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
  }

  .alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
  }

  @media (max-width: 768px) {
    .job-header {
      padding: 2rem 0;
    }

    .job-title {
      font-size: 1.5rem;
    }

    .job-meta {
      gap: 1rem;
    }

    .job-sidebar {
      margin-top: 2rem;
    }
  }

