#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  background: #0a0a23;
}
body, .main-header, .container, .modal {
  position: relative;
  z-index: 1;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f4f6fa;
  margin: 0;
  padding: 0;
  color: #222;
}
.main-header {
  background: #1976d2;
  color: #fff;
  padding: 32px 0 18px 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.main-header h1 {
  margin: 0;
  font-size: 2.4rem;
  letter-spacing: 1px;
}
.subtitle {
  margin: 8px 0 0 0;
  font-size: 1.1rem;
  color: #e3e7ed;
}
.container {
  max-width: 800px;
  margin: 32px auto 0 auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 32px 24px 24px 24px;
}
#search {
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 28px;
  box-sizing: border-box;
  outline: none;
  transition: border 0.2s;
}
#search:focus {
  border: 1.5px solid #1976d2;
}
#jobs-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.job-card {
  background: #f9fafb;
  border: 1px solid #e3e7ed;
  border-radius: 8px;
  padding: 22px 18px 18px 18px;
  transition: box-shadow 0.2s, border 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  position: relative;
}
.job-card:hover {
  box-shadow: 0 4px 18px rgba(25, 118, 210, 0.10);
  border: 1.5px solid #1976d2;
}
.job-card h2 {
  margin: 0 0 8px 0;
  font-size: 1.25rem;
  color: #1976d2;
}
.job-card p {
  margin: 4px 0;
  color: #444;
  font-size: 1rem;
}
.job-card .job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 8px;
  font-size: 0.98rem;
}
.job-card .job-meta span {
  color: #555;
  background: #e3e7ed;
  border-radius: 4px;
  padding: 2px 8px;
  margin-right: 6px;
}
.job-card a {
  display: inline-block;
  margin-top: 10px;
  color: #1976d2;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05rem;
}
.job-card a:hover {
  text-decoration: underline;
}
.job-card .desc-btn {
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 7px 16px;
  font-size: 1rem;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.2s;
}
.job-card .desc-btn:hover {
  background: #1251a3;
}
/* Modal styles */
.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.25);
  transition: opacity 0.2s;
}
.modal.hidden {
  display: none;
}
.modal-content {
  background: #fff;
  border-radius: 10px;
  padding: 32px 28px 24px 28px;
  max-width: 600px;
  width: 95vw;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 24px rgba(25, 118, 210, 0.18);
  position: relative;
}
.close-btn {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2rem;
  color: #1976d2;
  cursor: pointer;
  font-weight: bold;
  background: none;
  border: none;
}
.filters-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.filter-label {
  font-size: 1rem;
  color: #1976d2;
  margin-left: 8px;
}
#location-filter {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 1rem;
  background: #f9fafb;
  color: #222;
  min-width: 160px;
}
#location-filter:focus {
  border: 1.5px solid #1976d2;
  outline: none;
}
@media (max-width: 600px) {
  .container {
    padding: 12px 2vw;
  }
  .modal-content {
    padding: 18px 6px 12px 6px;
  }
  .main-header h1 {
    font-size: 1.5rem;
  }
  .filters-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  #location-filter {
    min-width: 100%;
  }
} 