/* Week Number Calculator - Custom Styles */

/* Result Cards */
.result-card {
  transition: all 0.3s ease;
}

.result-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.15);
}

/* Detail Items */
.detail-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.detail-item:last-child {
  border-bottom: none;
}

/* Results Container Animation */
#resultsContainer {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Current Week Cards */
.current-week-card {
  transition: all 0.3s ease;
}

.current-week-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Input Focus States */
input[type="number"]:focus,
select:focus {
  outline: none;
  border-color: #14b8a6;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

/* Button Hover Effects */
#calculateBtn {
  transition: all 0.3s ease;
}

#calculateBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px -2px rgba(20, 184, 166, 0.4);
}

#useToday {
  transition: color 0.2s ease;
}

/* Responsive Improvements */
@media (max-width: 768px) {
  .result-card {
    padding: 1.5rem;
  }

  #weekNumber {
    font-size: 3rem;
  }
}
