* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, #fef7ed 0%, #fef3c7 50%, #fefce8 100%);
  min-height: 100vh;
  padding: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 2rem;
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header {
  text-align: center;
  margin-bottom: 2rem;
}

.header-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.icon {
  width: 2rem;
  height: 2rem;
  color: #2bc020;
}

.logo {
  height: 3.5rem;
  width: auto;
  object-fit: contain;
}

.title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.subtitle {
  color: #6b7280;
  font-size: 1rem;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

.section {
  background: #f0fdf4;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  transform: scale(1);
}

.input:hover {
  transform: scale(1.02);
}

.select {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 1rem;
  padding-right: 2.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  transform: scale(1);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232bc020' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
}

.select:hover {
  transform: scale(1.02);
}

.input:focus,
.select:focus {
  outline: none;
  border-color: #2bc020;
  box-shadow: 0 0 0 3px rgba(43, 192, 32, 0.1);
}

.time-inputs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.time-separator {
  font-size: 1.5rem;
  font-weight: 700;
  color: #6b7280;
}



.meals-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meal-card {
  background: linear-gradient(135deg, #d4f7d4 0%, #e8f5e8 100%);
  border-radius: 0.75rem;
  padding: 1.25rem;
  border-left: 4px solid #2bc020;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
  transform: translateY(0);
  opacity: 0;
  animation: slideInUp 0.5s ease forwards;
}

.meal-card:hover {
  box-shadow: 0 8px 25px -5px rgba(43, 192, 32, 0.2);
  transform: translateY(-2px);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.meal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.meal-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.meal-number {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

.meal-time {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2bc020;
  transition: all 0.3s ease;
}

.meal-card:hover .meal-time {
  transform: scale(1.1);
}

.empty-state {
  background: #f0fdf4;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
}

.empty-icon {
  width: 3rem;
  height: 3rem;
  color: #9ca3af;
  margin: 0 auto 1rem;
}

.empty-text {
  color: #6b7280;
}
