* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #333;
  padding: 15px;
  min-height: 100vh;
}
.container {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 20px;
  max-width: 500px;
  margin: auto;
}
.job-title {
  background: #0077cc;
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  border-radius: 8px;
  margin-bottom: 25px;
}

/* Narasi Atas */
.intro-text {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.intro-text strong {
  color: #ff6ec4;
}

.intro-text em {
  font-style: italic;
  color: #7873f5;
}

/* Judul Catchy */
.job-vibes-title {
  text-align: center;
  margin: 20px 0;
}

.job-vibes-title h2 {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ff6ec4, #7873f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.job-vibes-title p {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

h1 {

  font-size: 24px;
  margin-bottom: 20px;
  text-shadow: none;
  padding: 15px;
  border-radius: 10px;

  background: linear-gradient(135deg, #4facfe, #8e44ad);
  color: white;
  text-align: center;
  padding: 18px;
  border-radius: 12px;
  margin: 15px 0;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.input-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}
}
label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #fff;
  font-size: 14px;
}
select {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: white;
  font-size: 15px;
  color: #333;
  outline: none;
}
select:focus {
  box-shadow: 0 0 0 2px #667eea;
}
button {
  display: block;
  width: 100%;
  padding: 12px;
  background: #0077cc;
  color: white;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}
button:hover {
  background: #005fa3;
}
button:disabled {
  background: #666;
  cursor: not-allowed;
}

/* Loading */
#loading {
  display: none;
  text-align: center;
  margin: 20px 0;
  color: white;
  font-weight: 600;
}
.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #0077cc;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 10px auto;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hasil per karakter */
.result-section {
  background: rgba(255,255,255,0.95);
  padding: 15px;
  border-radius: 12px;
  margin: 15px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.result-section h3 {
  color: #0077cc;
  font-size: 16px;
  margin-bottom: 10px;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}
.result-section ul {
  margin: 8px 0;
  padding-left: 18px;
  font-size: 14px;
}
.result-section li {
  margin: 3px 0;
  color: #555;
}

/* Kotak Rekomendasi Utama */
.top-job-box {
  background: linear-gradient(135deg, #4facfe, #8e44ad);
  color: white;
  text-align: center;
  padding: 18px;
  border-radius: 12px;
  margin: 15px 0;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Hasil akhir */
#final-result {
  display: none;
  background: rgba(255,255,255,0.95);
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  animation: fadeIn 0.5s ease;
}
#final-result h3 {
  color: #0077cc;
  font-size: 18px;
  margin-bottom: 10px;
}

.btn-share, .btn-reset {
  margin-top: 15px;
  display: block;
  width: 100%;
  padding: 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.btn-share {
  background: #0077cc;
}
.btn-reset {
  background: #6c757d;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  h1 { font-size: 22px; }
  .input-group label { font-size: 13px; }
  select, button { font-size: 15px; }
  .top-job-box { font-size: 16px; padding: 14px; }
}

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.dropdown-title {
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  margin-bottom: 5px;
}
.dropdown-wrapper {
  background: #0077cc;
  padding: 3px;
  border-radius: 8px;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
}

.dropdown-wrapper select {
  width: 100%;
  background: white !important; /* biar bagian dalam tetap putih */
  border: none !important;
  outline: none !important;
  padding: 8px 12px; 
  border-radius: 3px;
  font-size: 15px;
}
.result-title {
  background: #0077cc;
  color: white;
  padding: 12px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  border-radius: 8px;
  margin-bottom: 20px;
}
.calculator-box {
  background: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.calculator-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.calculator-list li {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  background: #f9f9f9;
}

.calculator-list li:last-child {
  border: none;
  background: none;
}
