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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9fafb;
}

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

.hero {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: #2563eb;
  color: white;
}

.btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background-color: white;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-secondary:hover {
  background-color: #f0f7ff;
}

.btn-small {
  padding: 6px 12px;
  font-size: 14px;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-small:hover {
  background-color: #1d4ed8;
}

section {
  padding: 60px 20px;
  background: white;
  margin-bottom: 2px;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
  color: #1e293b;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.step {
  text-align: center;
  padding: 30px;
  background: #f8fafc;
  border-radius: 12px;
  transition: transform 0.3s;
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #1e293b;
}

.step p {
  color: #64748b;
}

.benefits {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.benefits li {
  padding: 20px;
  margin-bottom: 15px;
  background: #f8fafc;
  border-left: 4px solid #2563eb;
  border-radius: 4px;
}

.benefits strong {
  color: #1e293b;
  font-size: 1.1rem;
}

.faq {
  background: #f8fafc;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 30px;
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  color: #1e293b;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.faq-item p {
  color: #64748b;
}

footer {
  background: #1e293b;
  color: white;
  text-align: center;
  padding: 30px 20px;
}

footer a {
  color: #60a5fa;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.form-wrapper {
  max-width: 700px;
  margin: 40px auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-wrapper h1 {
  color: #1e293b;
  margin-bottom: 10px;
  font-size: 2rem;
}

.form-intro {
  color: #64748b;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

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

.form-section h3 {
  color: #475569;
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e2e8f0;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #475569;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  cursor: pointer;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.error-message {
  background-color: #fee2e2;
  color: #991b1b;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  border-left: 4px solid #dc2626;
}

.thankyou-wrapper {
  max-width: 600px;
  margin: 60px auto;
  background: white;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 30px;
}

.thankyou-wrapper h1 {
  color: #1e293b;
  margin-bottom: 20px;
}

.thankyou-message {
  font-size: 1.15rem;
  color: #475569;
  margin-bottom: 20px;
}

.login-wrapper {
  max-width: 400px;
  margin: 80px auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.login-wrapper h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #1e293b;
}

.table-responsive {
  overflow-x: auto;
  margin-top: 20px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.admin-table th {
  background: #f8fafc;
  padding: 12px;
  text-align: left;
  font-weight: 600;
  color: #475569;
  border-bottom: 2px solid #e2e8f0;
}

.admin-table td {
  padding: 12px;
  border-bottom: 1px solid #e2e8f0;
}

.admin-table tr:hover {
  background: #f8fafc;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
}

.status-badge.nieuw {
  background: #dbeafe;
  color: #1e40af;
}

.status-badge.gecontacteerd {
  background: #fef3c7;
  color: #92400e;
}

.status-badge.gekwalificeerd {
  background: #d1fae5;
  color: #065f46;
}

.status-badge.niet.geschikt {
  background: #fee2e2;
  color: #991b1b;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 20px;
}

.close:hover {
  color: #000;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .form-wrapper {
    padding: 30px 20px;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
    text-align: center;
  }

  .admin-table {
    font-size: 14px;
  }

  .admin-table th,
  .admin-table td {
    padding: 8px;
  }
}

.nav-buttons {
  position: absolute;
  top: 20px;
  right: 40px;
}

.dashboard-header {
  background: white;
  border-bottom: 2px solid #e2e8f0;
  padding: 0;
  margin-bottom: 30px;
}

.dashboard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.dashboard-nav h2 {
  margin: 0;
  color: #1e293b;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s;
}

.nav-links a:hover {
  background: #f8fafc;
  color: #2563eb;
}

.nav-links a.active {
  background: #2563eb;
  color: white;
}

.dashboard-content {
  padding: 20px 0;
}

.welcome-section {
  margin-bottom: 40px;
}

.welcome-section h1 {
  color: #1e293b;
  margin-bottom: 10px;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.stat-card h3 {
  font-size: 2.5rem;
  color: #2563eb;
  margin-bottom: 10px;
}

.stat-card p {
  color: #64748b;
  font-size: 0.9rem;
}

.dashboard-section {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.dashboard-section h2 {
  color: #1e293b;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.empty-state {
  text-align: center;
  padding: 40px;
  color: #64748b;
}

.empty-state a {
  color: #2563eb;
  text-decoration: underline;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.campaign-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.campaign-card h3 {
  color: #1e293b;
  margin-bottom: 10px;
}

.campaign-company {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.campaign-location {
  color: #475569;
  margin-bottom: 5px;
}

.campaign-compensation {
  color: #10b981;
  font-weight: 600;
  margin-bottom: 15px;
}

.campaign-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.campaign-card-large {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.campaign-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 15px;
}

.campaign-header h3 {
  color: #1e293b;
  font-size: 1.5rem;
  margin: 0;
}

.campaign-description {
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.6;
}

.campaign-details {
  background: #f8fafc;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.campaign-details p {
  margin-bottom: 8px;
  color: #475569;
}

.campaign-details p:last-child {
  margin-bottom: 0;
}

.campaign-actions {
  display: flex;
  gap: 10px;
}

.status-badge.applied {
  background: #dbeafe;
  color: #1e40af;
}

.status-badge.shortlisted {
  background: #fef3c7;
  color: #92400e;
}

.status-badge.rejected {
  background: #fee2e2;
  color: #991b1b;
}

.status-badge.assigned {
  background: #d1fae5;
  color: #065f46;
}

.status-badge.published {
  background: #d1fae5;
  color: #065f46;
}

.status-badge.draft {
  background: #e2e8f0;
  color: #475569;
}

.status-badge.in_progress {
  background: #dbeafe;
  color: #1e40af;
}

.status-badge.completed {
  background: #d1fae5;
  color: #065f46;
}

.status-badge.closed {
  background: #e2e8f0;
  color: #475569;
}

.campaign-detail-wrapper {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.back-link {
  color: #2563eb;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 500;
}

.back-link:hover {
  text-decoration: underline;
}

.campaign-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.info-item strong {
  display: block;
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.info-item p {
  color: #1e293b;
  font-weight: 500;
}

.campaign-description-full {
  margin: 30px 0;
  padding: 20px;
  background: #f8fafc;
  border-radius: 8px;
}

.campaign-description-full h3 {
  color: #1e293b;
  margin-bottom: 15px;
}

.campaign-requirements {
  margin: 30px 0;
  padding: 20px;
  background: #fef3c7;
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
}

.campaign-requirements h3 {
  color: #92400e;
  margin-bottom: 15px;
}

.apply-section {
  margin-top: 40px;
  padding: 30px;
  background: #f8fafc;
  border-radius: 12px;
}

.apply-section h3 {
  color: #1e293b;
  margin-bottom: 20px;
}

.profile-view {
  background: white;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.profile-item {
  padding: 15px;
  background: #f8fafc;
  border-radius: 8px;
}

.profile-item strong {
  display: block;
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.profile-item p {
  color: #1e293b;
  font-weight: 500;
}

.info-box {
  background: #dbeafe;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #2563eb;
}

.info-box h3 {
  color: #1e40af;
  margin-bottom: 15px;
}

.info-box p {
  color: #1e293b;
  margin-bottom: 10px;
}

.info-box a {
  color: #2563eb;
  font-weight: 600;
}

.campaign-admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.campaign-admin-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.campaign-info-section {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.description-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.description-section strong {
  display: block;
  color: #475569;
  margin-bottom: 10px;
}

.admin-section {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.admin-section h2 {
  color: #1e293b;
  margin-bottom: 20px;
}

.success-message {
  background-color: #d1fae5;
  color: #065f46;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  border-left: 4px solid #10b981;
}

.featured-campaigns {
  background: white;
  padding: 60px 20px;
}

.featured-campaigns h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #1e293b;
}

@media (max-width: 768px) {
  .dashboard-nav {
    flex-direction: column;
    gap: 15px;
  }
  
  .nav-links {
    flex-direction: column;
    width: 100%;
  }
  
  .nav-links a {
    text-align: center;
  }
  
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
  
  .campaign-info-grid,
  .profile-grid {
    grid-template-columns: 1fr;
  }
  
  .campaign-admin-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
