/*


 */

/* These styles are kept for components that haven't been converted to Tailwind yet */

/* Form Validation Styles */
.field-with-error input,
.field-with-error select,
.field-with-error .checkbox-group,
.field-with-error .radio-group,
.field-with-error {
  @apply border-2 border-red-500 rounded p-2 bg-red-50;
}

.error-message {
  @apply text-red-600 text-sm mt-1 block font-bold;
}

/* Typography for content areas that haven't been converted */
.container {
  @apply max-w-3xl mx-auto px-4 py-8;
}

/* Sections */
.intro, .principle, .matching {
  @apply bg-white p-6 md:p-8 rounded-lg shadow-md mb-8;
}

.intro p {
  @apply text-lg mb-4;
}

/* Lists */
ul:not([class]) {
  @apply list-none pl-0;
}

ul:not([class]) li {
  @apply mb-4 pl-6 relative;
}

ul:not([class]) li::before {
  content: "•";
  @apply text-blue-500 font-bold absolute left-0;
}

/* CTA Button */
.cta {
  @apply text-center my-12;
}

.button {
  @apply inline-block bg-blue-600 text-white py-3 px-8 rounded-full text-lg font-semibold transition-all duration-300 shadow-md hover:bg-blue-700 hover:shadow-lg hover:-translate-y-0.5 mx-4;
}

.button.secondary {
  @apply bg-indigo-600 hover:bg-indigo-700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .button {
    @apply py-2 px-6 text-base block mx-auto my-4 max-w-xs;
  }
}
.simple-calendar {
  width: 100%;
  margin-bottom: 2rem;
}

.simple-calendar table {
  width: 100%;
  border-collapse: collapse;
}

.simple-calendar th,
.simple-calendar td {
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  text-align: left;
}

.simple-calendar th {
  background-color: #f3f4f6;
  font-weight: 600;
}

.simple-calendar .day {
  height: 100px;
  vertical-align: top;
}

.simple-calendar .wday-0,
.simple-calendar .wday-6 {
  background-color: #f9fafb;
}

.simple-calendar .today {
  background-color: #e5edff;
}

.simple-calendar .prev-month,
.simple-calendar .next-month {
  background-color: #f9fafb;
  color: #9ca3af;
}

.simple-calendar .calendar-heading {
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.simple-calendar .calendar-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.simple-calendar .calendar-heading a {
  color: #4b5563;
  text-decoration: none;
  padding: 0.5rem;
}

.simple-calendar .calendar-heading a:hover {
  color: #1f2937;
}
