* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #2c3e50;
  line-height: 1.6;
  min-height: 100vh;
  padding: 20px;
} */



#app {
  width: 100%;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    overflow-x: hidden;
	
}
/* Header Styles */
header {
    text-align: center;
     background: linear-gradient(135deg, #9CA1E2 0%, #4b85e6 50%, #9CA1E2 100%);
    color: white !important;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 10px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
}




header h1 {
    font-size: 45px !important;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
  font-size: 1.1rem;
  color: white;
  font-weight: 400;
}

.generator-card {
  background: #ffffff !important;
  border-radius: 12px !important;
  padding: 32px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 2px solid #4b85e6 !important;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.generator-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.form-group {
  margin-bottom: 24px;
}

label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #154578 !important;
  margin-bottom: 8px;
}

input[type="number"],
select {
  width: 100%;
  padding: 12px 16px !important;
  font-size: 1rem;
  border: 2px solid #e0e0e0 !important;
  border-radius: 8px !important;
  background-color: #ffffff !important;
  color: #2c3e50 !important;
  transition: all 0.3s ease;
  font-family: inherit;
}

input[type="number"]:focus,
select:focus {
  outline: none !important;
  border-color: #1e5aa8 !important;
  box-shadow: 0 0 0 4px rgba(30, 90, 168, 0.1);
}

input[type="number"]:hover,
select:hover {
  border-color: #2a6bc7;
}

.generate-btn {
  width: 100%;
  padding: 16px 32px !important;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff !important;
 background: linear-gradient(135deg, #9CA1E2 0%, #4b85e6 50%, #9CA1E2 100%) !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.generate-btn:hover {
  background: linear-gradient(135deg, #f4d06f 0%, #d4af37 100%);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.generate-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.results-container {
  background: #ffffff !important;
  border-radius: 12px !important;
  padding: 32px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 2px solid #4b85e6 !important;
  animation: slideIn 0.4s ease-out;

  overflow: hidden; /* prevent scrollbar flash while animating */

}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #d4af37 !important;
}

.results-header h2 {
  font-size: 1.8rem;
  color: #154578;
  font-weight: 700;
}

.copy-all-btn {
  padding: 10px 20px !important;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff !important;
 background: linear-gradient(135deg, #9CA1E2 0%, #4b85e6 50%, #9CA1E2 100%)!important;
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.copy-all-btn:hover {
  background-color: #2a6bc7;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(30, 90, 168, 0.3);
}

.copy-all-btn:active {
  transform: translateY(0);
}

.results-list {
  display: grid;
  gap: 12px;
}

.job-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px !important;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 8px !important;
  transition: all 0.3s ease;
  animation: fadeInItem 0.3s ease-out backwards;
}

.job-item:nth-child(1) { animation-delay: 0.05s; }
.job-item:nth-child(2) { animation-delay: 0.1s; }
.job-item:nth-child(3) { animation-delay: 0.15s; }
.job-item:nth-child(4) { animation-delay: 0.2s; }
.job-item:nth-child(5) { animation-delay: 0.25s; }

@keyframes fadeInItem {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.job-item:hover {
  border-color: #d4af37;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
  transform: translateX(4px);
}

.job-content {
  flex: 1;
}

.job-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 4px;
}

.job-sector {
  font-size: 0.9rem;
  color: #5a6c7d;
  font-style: italic;
}

.copy-btn {
  padding: 8px 16px !important;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff !important;
  background-color: #d4af37 !important;
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  margin-left: 16px;
}

.copy-btn:hover {
  background-color: #f4d06f;
  transform: scale(1.05);
  box-shadow: 0 2px 6px rgba(212, 175, 55, 0.4);
}

.copy-btn:active {
  transform: scale(0.98);
}

.copy-btn.copied {
  background-color: #28a745;
}

@media (max-width: 768px) {
.container {
    padding: 0px;
  }

  h1 {
    font-size: 35px !important;
  }

  .subtitle {
    font-size: 1rem;
  }

  header {
    padding: 24px 16px;
    margin-bottom: 24px;
  }

  .generator-card,
  .results-container {
    padding: 20px;
  }

  .results-header {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .results-header h2 {
    font-size: 1.5rem;
  }

  .copy-all-btn {
    width: 100%;
  }

  .job-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .copy-btn {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }

  .subtitle {
    font-size: 0.9rem;
  }

  .generator-card,
  .results-container {
    padding: 16px;
  }

  .job-title {
    font-size: 1rem;
  }

  .job-sector {
    font-size: 0.85rem;
  }
}
