/* Base styles */
:root {
  --brand-yellow: #ffd100;
  --brand-dark: #1f2937;
  --white: #ffffff;
  --border-color: #e5e7eb;
  --brand-green: #10b981;
}

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

/* Schedule styles */
.schedule-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0;
  gap: 0.75rem;
  padding: 0rem !important;
}

.schedule-row {
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
}

.schedule-row span {
  width: 100px;
  color: var(--brand-dark);
  font-weight: 500;
}

.time-inputs {
  display: flex;
  gap: 1rem;
  flex: 1;
  justify-content: flex-end;
}

.schedule-row input[type="time"] {
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  width: 120px;
  font-family: inherit;
  background: var(--white);
}

@media (max-width: 600px) {
  .schedule-container {
    max-width: 100%;
  }
  .schedule-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 0.5rem;
    gap: 0.5rem;
    width: 100%;
  }
  .schedule-row span {
    width: auto;
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
  .time-inputs {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  .schedule-row input[type="time"] {
    width: 100%;
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
}
