/**
 * @file
 * Styles for Recruitment PDF Generator.
 */

.recruitment-pdf-link {
  margin: 20px 0;
  text-align: center;
}

.btn-pdf-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: #d32f2f;
  color: #fff !important;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.btn-pdf-download:hover {
  background: #b71c1c;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff !important;
}

.btn-pdf-download::before {
  content: "📄";
  font-size: 20px;
}

/* Admin list view */
.views-field-operations .generate-pdf {
  display: inline-block;
  padding: 4px 10px;
  background: #d32f2f;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  font-size: 12px;
  margin-left: 5px;
}

.views-field-operations .generate-pdf:hover {
  background: #b71c1c;
  color: #fff;
  text-decoration: none;
}

/* RTL Support */
[dir="rtl"] .recruitment-pdf-link {
  text-align: center;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .btn-pdf-download {
    padding: 10px 20px;
    font-size: 14px;
  }
}
