body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}

header {
  background: #222;
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
}

header nav button {
  margin-left: 10px;
}

section {
  padding: 20px;
}

textarea {
  width: 100%;
  height: 150px;
  padding: 10px;
  font-size: 14px;
}

.primary {
  background: #7A5AF8;
  color: white;
  border: none;
  padding: 10px 15px;
  margin-top: 10px;
  cursor: pointer;
}

.job-card {
  background: white;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 6px;
  position: relative;
}

.delete-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

.expand-btn {
  margin-top: 10px;
}

.skills-container {
  margin-top: 10px;
}

.pill {
  display: inline-block;
  background: #ddd;
  padding: 4px 8px;
  border-radius: 4px;
  margin: 3px;
  font-size: 12px;
}

.pill-portal {
  background: #7A5AF8;
  color: white;
}

/* MODALS */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 20px;
  width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 6px;
  position: relative;
}

.close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}
