body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  background-color: #F9FAFB;
  color: #111827;
  margin: 0 auto;
  padding: 20px;
}

.wisher-ui {
  max-width: 900px;
}

.wishes-section {
  max-width: 900px;
  margin: 40px auto;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

h1 {
  font-size: 30px;
  margin-bottom: 24px;
  color: #111827;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.col {
  flex: 1;
  min-width: 150px;
}

label {
  display: block;
  margin-bottom: 5px;
  color: #FFF;
  font-size: 16px;
}

select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.generated-text {
  min-height: 250px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 20px;
  margin: 20px 0;
  font-size: 24px;
  line-height: 1.4;
}

.action-buttons {
  display: flex;
  gap: 10px;
}

button {
  padding: 12px 24px;
  border-radius: 0.25rem;
  font-weight: 600;
  border: none;
  transition: background-color 0.3s ease;
}

button:hover {
  transform: translateY(-2px);

}


#generate-btn {
    background-color: #EC4899;
    color: #F9FAFB;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s ease;
  }
  
  #generate-btn:hover {
    background-color: #D61F69;
  }

#copy-btn {
  background-color: #f0f0f0;
  color: #333;
}

button:hover {
  opacity: 0.9;
}

.wishes-container {
  max-width: 800px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.wish-card {
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.wish-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0,0,0,0.1);
}

.wish-card p {
  font-size: 18px;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 16px;
}

.wish-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.rating {
  font-weight: 600;
  color: #4B5563;
}

.vote-buttons {
  display: flex;
  gap: 8px;
}

.upvote-btn, .downvote-btn, .copy-btn {
  padding: 8px 12px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.upvote-btn {
  background-color: #10B981;
  color: white;
}

.downvote-btn {
  background-color: #EF4444;
  color: white;
}

.copy-btn {
  background-color: #3B82F6;
  color: white;
}

.copy-btn {
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* Hero section styles */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #6366F1, #A855F7);
  color: #FFF;
  width: 100%;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    rgba(236, 72, 153, 0.1),
    rgba(236, 72, 153, 0.1) 10px,
    transparent 10px,
    transparent 20px
  );
  animation: move-background 20s linear infinite;
}

@keyframes move-background {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50%, 50%);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.hero-svg {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-svg svg {
  max-width: 80%;
  height: auto;
  fill: #EC4899;
  filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.5));
}

input, select {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #F9FAFB;
  padding: 0.5rem;
  border-radius: 0.25rem;
}
input::placeholder {
  color: rgba(249, 250, 251, 0.6);
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-svg {
    width: 100%;
    margin-top: 2rem;
  }

  .row {
    flex-direction: column;
  }
  .wishes-section {
    padding: 24px;
  }

  h1 {
    font-size: 24px;
  }

  .wish-card {
    padding: 16px;
  }

  .wish-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}