.fixed-apply-btn {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
  display: inline-block;
  padding: 14px 32px;
  background: #e53946;  /* theme red */
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;   /* rounded pill shape */
  box-shadow: 0 6px 16px rgba(229, 57, 70, 0.4);
  transition: all 0.3s ease;
}

.fixed-apply-btn:hover {
  background: #c62828;   /* darker red on hover */
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(198, 40, 40, 0.5);
}

.fixed-apply-btn:active {
  transform: translateY(-1px) scale(0.97);
}

@media (max-width: 480px) {
  .fixed-apply-btn {
    left: 12px;
    bottom: 12px;
    padding: 12px 24px;
    font-size: 14px;
  }
}


.footer-disclaimer {
        font-size: 13px;
        color: #999;
        margin-top: 20px;
        line-height: 1.6;
    }

    .footer-disclaimer a {
        color: #666;
        text-decoration: underline;
    }

    .footer-disclaimer a:hover {
        color: #d9534f;
        /* red hover effect */
    }
    
.job-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.job-category-grid a {
    display: block;
    background: #f9f9f9;
    padding: 12px 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.job-category-grid a:hover {
    background: #e63946;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
