/* General Web Styles */
body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

form input, form select, form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    box-sizing: border-box;
}

form button {
    margin-top: 20px;
    padding: 10px 15px;
    background: #27ae60;
    color: white;
    border: none;
    cursor: pointer;
}

/* Menu Specific Layout styling */
.menu-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.menu-header {
    text-align: center;
    margin-bottom: 40px;
}

.hotel-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.category-title {
    text-align: center;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-top: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.menu-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.item-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
}

.item-details {
    flex-grow: 1;
}

.item-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 3px;
}

.item-desc {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* Adjustments for narrow screens/Single column printing */
@media (max-width: 768px), print {
    .menu-grid {
        grid-template-columns: 1fr; /* Switch to full single-column on standard paper layouts */
    }
}