/* Base Layout Styles */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    min-height: 100vh;
}

form {
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 18px;
}

/* Layout Components */
.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 12px;
}

.date-row {
    justify-content: flex-start;
    gap: 6px;
}

.batch-display-container {
    margin-left: auto;
}

.batch-label {
    font-size: 0.95em;
    color: #888;
    margin-bottom: 2px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.batch-display {
    font-weight: bold;
    font-size: 1.1em;
    color: #555;
    background: #f3f3f3;
    padding: 6px 12px;
    border-radius: 6px;
    min-width: 110px;
    text-align: right;
}

label {
    font-weight: bold;
    color: #555;
    margin-right: 6px;
}

.sauce-for-group {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
} 