
.jobs-container {
  flex-grow: 1;
  padding: 2rem 5vw;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
}

.jobs-header {
  text-align: center;
  margin-bottom: 2rem;
}

.jobs-header h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
}

.jobs-header p {
  color: #ccc;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Email Form Container */
.email-form-container {
  background: rgba(26, 19, 33, 0.8);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(159, 79, 255, 0.2);
  backdrop-filter: blur(20px);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.email-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #9f4fff, #7B00FF, #603F84);
}

.email-form-container h2 {
  color: #9f4fff;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.email-input {
  padding: 0.8rem 1rem;
  border: 2px solid rgba(159, 79, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: #9f4fff;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(159, 79, 255, 0.3);
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.submit-btn {
  background: linear-gradient(135deg, #9f4fff, #7B00FF);
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(159, 79, 255, 0.4);
  background: linear-gradient(135deg, #b366ff, #9f4fff);
}

/* Current Email Display */
.current-email {
  text-align: center;
  color: #9f4fff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  background: rgba(26, 19, 33, 0.6);
  padding: 1rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(159, 79, 255, 0.2);
  backdrop-filter: blur(10px);
}

.current-email strong {
  color: #fff;
  font-weight: 700;
}

.current-email a {
  color: #7B00FF;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.current-email a:hover {
  color: #9f4fff;
  text-decoration: underline;
}

/* Jobs Grid */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.job-card {
  background: rgba(26, 19, 33, 0.8);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(159, 79, 255, 0.2);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #9f4fff, #7B00FF, #603F84);
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(159, 79, 255, 0.2);
  border-color: rgba(159, 79, 255, 0.4);
  background: rgba(26, 19, 33, 0.9);
}

.job-name {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #9f4fff, #7B00FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Inter', sans-serif;
}

.job-url {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  word-break: break-all;
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.job-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
}

.job-status {
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
}

.status-active {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
}

.job-interval {
  color: #9f4fff;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.status-link {
  display: inline-block;
  background: linear-gradient(135deg, #9f4fff, #7B00FF);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.status-link:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: white;
  box-shadow: 0 6px 20px rgba(159, 79, 255, 0.4);
  background: linear-gradient(135deg, #b366ff, #9f4fff);
}

/* No Jobs Message */
.no-jobs {
  text-align: center;
  color: #ccc;
  font-size: 1.1rem;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(26, 19, 33, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(159, 79, 255, 0.2);
  backdrop-filter: blur(10px);
}

.no-jobs p {
  margin: 0.5rem 0;
  font-weight: 500;
}

.no-jobs strong {
  color: #9f4fff;
  font-weight: 700;
}

.no-jobs a {
  color: #9f4fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.no-jobs a:hover {
  color: #b366ff;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .jobs-container {
    padding: 1.5rem 4vw;
  }
  
  .jobs-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .jobs-container {
    padding: 1rem 3vw;
  }
  
  .jobs-header h1 {
    font-size: 2rem;
  }
  
  .email-form-container {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .email-form-container h2 {
    font-size: 1.3rem;
  }
  
  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .job-card {
    padding: 1.2rem;
  }
  
  .job-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .current-email {
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .jobs-container {
    padding: 1rem 4vw;
  }
  
  .jobs-header h1 {
    font-size: 1.8rem;
  }
  
  .email-form-container {
    padding: 1.2rem;
  }
  
  .email-input {
    padding: 0.7rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .submit-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .job-card {
    padding: 1rem;
  }
  
  .job-name {
    font-size: 1.1rem;
  }
  
  .job-url {
    font-size: 0.85rem;
  }
  
  .status-link {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}
