<style>
/* -----------------------------------------------------------
   GLOBAL RESET + BASE TYPOGRAPHY
----------------------------------------------------------- */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Aptos", "Calibri", "Arial", sans-serif;
  background: #ffffff;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  color: #222;
  line-height: 1.6;
}

/* VISIBILITY */
.hidden { display: none !important; }

/* -----------------------------------------------------------
   FINAL FORM TYPOGRAPHY
----------------------------------------------------------- */
label {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 6px;
  font-weight: 500;
}

input[type="text"],
input[type="number"],
input[type="date"],
textarea,
select {
  width: 100%;
  padding: 18px;
  font-size: 1.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  margin-bottom: 25px;
}

/* -----------------------------------------------------------
   FORM CONTAINER
----------------------------------------------------------- */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 9px rgba(0,0,0,0.08);
}

/* -----------------------------------------------------------
   SCREEN
----------------------------------------------------------- */
.screen {
  position: relative;
}

.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 999;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #ccc;
  border-top-color: #2E7D32;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.success-banner {
  background: #2E7D32;
  color: white;
  padding: 18px;
  text-align: center;
  font-size: 1.6rem;
  border-radius: 6px;
  margin: 20px auto;
  max-width: 600px;
  display: none;
}

.screen {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  min-height: 100vh;
}

@media (min-width: 800px) {
  .screen {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* -----------------------------------------------------------
   BUTTONS — AVEO GREEN
----------------------------------------------------------- */
button.primary,
button.secondary {
  width: 100%;
  background-color: #2E7D32;
  color: white;
  border: none;
  padding: 22px;
  font-size: 2.0rem;
  border-radius: 8px;
  cursor: pointer;
}

button.primary:active,
button.secondary:active {
  background-color: #1B5E20;
}

.form-buttons {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
/* --- Chef Specials View Styling --- */

.specials-box {
  background: #ffffff;
  border: 2px solid #4CAF50; /* Aveo green */
  padding: 16px;
  border-radius: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.week-heading {
  font-weight: bold;
  margin-bottom: 12px;
  color: #2e7d32; /* darker Aveo green */
  font-size: 1.3rem;
}

.specials-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.specials-list li {
  margin-bottom: 10px;
}

.aveo-title {
  color: #2e7d32;
  font-size: 1.6rem;
  margin-bottom: 20px;
  text-align: center;
}
/* -----------------------------------------------------------
   REQUEST TYPE SCREEN — TWO COLUMN LAYOUT + BUTTON VARIANTS
----------------------------------------------------------- */

/* Two-column responsive layout */
.button-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}

.button-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ACTION BUTTONS (strong Aveo green) */
.btn-action {
  background-color: #2E7D32;
  color: #FFFFFF;
  padding: 18px;
  border: none;
  border-radius: 12px;
  font-size: 1.25rem;
  width: 100%;
  font-family: 'Aptos', sans-serif;
}

/* INFORMATION BUTTONS (teal from ChefSpecialsTemplate) */
.btn-info {
  background-color: #1BA39C; /* New Aveo teal */
  color: #FFFFFF;
  padding: 18px;
  border: none;
  border-radius: 12px;
  font-size: 1.25rem;
  width: 100%;
  font-family: 'Aptos', sans-serif;
  opacity: 0.95;
}

/* Hover states */
.btn-action:hover,
.btn-info:hover {
  opacity: 0.85;
}

/* Desktop/tablet: two columns */
@media (min-width: 720px) {
  .button-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .button-column {
    width: 48%;
  }
}

/* ---------------------------------------
   SPINNER (DATE FIELD LOADING INDICATOR)
   --------------------------------------- */

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 3px solid #ccc;
  border-top-color: #4CAF50; /* Aveo green */
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


@keyframes spin {
  to { transform: rotate(360deg); }
}
.large-spinner {
  width: 48px;
  height: 48px;
  border: 6px solid #ccc;
  border-top: 6px solid #2e7d32; /* Aveo green */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

</style>
