/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header Styles */
header {
  background-color: #fff;
  padding: 30px 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

header h1 {
  color: #2c3e50;
  margin-bottom: 10px;
}

/* API Info Section */
.api-info {
  background-color: #f0f8ff;
  border-radius: 8px;
  padding: 15px;
  margin-top: 15px;
  border-left: 4px solid #3498db;
  font-size: 0.9rem;
}

.api-info code {
  background: #e8f4fc;
  padding: 2px 4px;
  border-radius: 3px;
  font-family: monospace;
  border: 1px solid #d0e3f0;
}

/* Job Listings */
.job-listings {
  margin-bottom: 40px;
}

.job-listings h2 {
  margin-bottom: 20px;
  color: #2c3e50;
  border-bottom: 2px solid #3498db;
  padding-bottom: 10px;
}

.job-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

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

.job-card h3 {
  color: #3498db;
  margin-bottom: 10px;
}

.job-card p {
  margin-bottom: 15px;
  color: #555;
}

.apply-btn {
  display: inline-block;
  background-color: #3498db;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.apply-btn:hover {
  background-color: #2980b9;
}

/* Difficulty Tags */
.difficulty-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.difficulty-easy {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: white;
}

.difficulty-medium {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: white;
}

.difficulty-hard {
  background-color: #e74c3c;
}

.site {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
}

/* Footer Styles */
footer {
  text-align: center;
  padding: 20px;
  color: #7f8c8d;
  font-size: 0.9rem;
}

/* Application Form Styles */
.application-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.application-form h2 {
  margin-bottom: 20px;
  color: #2c3e50;
  border-bottom: 2px solid #3498db;
  padding-bottom: 10px;
}

.form-section {
  margin-bottom: 30px;
}

.form-section h3 {
  margin-bottom: 15px;
  color: #3498db;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #555;
}

.required-field::after {
  content: " *";
  color: #e74c3c;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  margin-top: 5px;
}

input[type="file"] {
  padding: 10px 0;
}

.radio-group,
.checkbox-group {
  margin-top: 8px;
  display: flex;
  gap: 16px;
}

.radio-option,
.checkbox-option {
  display: block;
  margin-bottom: 10px;
}

.button-group {
  margin-top: 30px;
}

.submit-btn {
  background-color: #2ecc71;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #27ae60;
}

.back-btn {
  background-color: #95a5a6;
  margin-right: 10px;
}

.back-btn:hover {
  background-color: #7f8c8d;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .application-form {
    padding: 20px;
  }
}
