/* Base Reset and Large Fonts for Accessibility */
body {
    font-family: Arial, sans-serif;
    background-color: #f7f9fa;
    color: #333333;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    font-size: 18px;
}

/* Header styling */
header {
    text-align: center;
    background-color: #2c3e50;
    color: white;
    padding: 30px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    margin: 10px 0 0 0;
    font-size: 1.2rem;
}

/* Main Container Layout */
main {
    max-width: 600px;
    margin: 0 auto;
}

/* Big, chunky sections to break up the form steps */
.form-section {
    background: white;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
}

.form-section h2 {
    margin-top: 0;
    color: #2c3e50;
    border-bottom: 3px solid #3498db;
    padding-bottom: 8px;
}

/* Form Fields */
.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

/* UPDATED TO STYLES BOTH TEXT FIELDS AND DROPDOWNS */
input[type="text"], 
select {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    box-sizing: border-box;
    background-color: white; /* Ensures select boxes look uniform */
}

/* Individual Meal Items */
.meal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.meal-item:last-child {
    border-bottom: none;
}

.meal-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.meal-info p {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
}

/* Giant input for meal numbers so it's easy to tap/type */
.meal-quantity input[type="number"] {
    width: 70px;
    padding: 10px;
    font-size: 20px;
    text-align: center;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
}

/* Huge green button for easy clicking */
.cash-btn {
    width: 100%;
    background-color: #27ae60;
    color: white;
    font-size: 22px;
    font-weight: bold;
    padding: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background 0.2s;
}

.cash-btn:hover {
    background-color: #219653;
}