/* Job Detail Page Styles */
.job-detail-card {
  max-width: 900px;
  margin: 0 auto 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.job-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #4169e1, #cea66a);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  position: relative;
  padding-right: 40px;
}

.job-header h1 {
  font-size: 2.2rem;
  color: #1e3a8a;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.job-location, .job-date {
  color: #64748b;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1rem;
}

.job-description-full {
  line-height: 1.7;
  color: #374151;
  font-size: 1.05rem;
  margin-bottom: 32px;
  border-left: 4px solid #4169e1;
  padding-left: 20px;
}

.job-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.apply-btn {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(40,167,69,0.3);
}

.apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(40,167,69,0.4);
}

.btn-copy {
  background: #6c757d;
  color: white;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-copy:hover {
  background: #5a6268;
  transform: translateY(-1px);
}

.btn-primary {
  background: #4169e1;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #1e3a8a;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  .job-detail-card {
    margin: 0 20px 20px;
    padding: 24px;
  }
  
  .job-header {
    flex-direction: column;
    gap: 12px;
    padding-right: 0;
  }
  
  .job-header h1 {
    font-size: 1.8rem;
  }
  
  .job-actions {
    flex-direction: column;
  }
  
  .apply-btn, .btn-copy {
    width: 100%;
    text-align: center;
  }
}
