/*
 * Pusser's Landing Toast Menu Styles
 */

.toast-menu-container {
    font-family: sans-serif;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.toast-menu h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #D4B483;
    padding-bottom: 10px;
}

.menu-group {
    margin-bottom: 40px;
}

.menu-group h3 {
    font-size: 1.8em;
    color: #002244; /* A nautical navy blue */
    margin-bottom: 20px;
    border-left: 4px solid #D4B483; /* A gold accent */
    padding-left: 10px;
}

.menu-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-group li {
    display: grid;
    grid-template-columns: 1fr auto; /* Name on left, price on right */
    gap: 5px 15px; /* Row and column gap */
    padding: 10px 0;
    border-bottom: 1px dotted #ccc;
}

.menu-group li:last-child {
    border-bottom: none;
}

.menu-item-name {
    font-weight: bold;
    font-size: 1.1em;
}

.menu-item-price {
    font-weight: bold;
    font-size: 1.1em;
    color: #555;
    grid-column: 2; /* Ensure price is in the second column */
    grid-row: 1;
}

.menu-item-description {
    font-size: 0.9em;
    color: #666;
    grid-column: 1 / span 2; /* Description spans both columns */
    margin-top: 5px;
}

.toast-menu-error {
    background-color: #ffebee;
    border: 1px solid #c62828;
    color: #c62828;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
}