/* ///////////////////////////////////// */
/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main {
    padding: 20px;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

/* ///////////////////////////////////// */
/* Header Styles */
header {
    background-color: #d9534f;
    color: white;
    padding: 20px;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header h1 {
    margin: 0;
}

/* ///////////////////////////////////// */
/* Menu Styles */
.menu {
    background-color: white;
    padding: 20px 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
}

.menu ul {
    list-style: none;
    padding: 0;
}

.menu li {
    font-size: 1.1em;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.menu li:last-child {
    border-bottom: none;
}

/* ///////////////////////////////////// */
/* Button Styles */
#order-btn {
    display: inline-block;
    background-color: #5cb85c;
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

#order-btn:hover {
    background-color: #4cae4c;
}

/* ///////////////////////////////////// */
/* Order Summary Styles */
#order-summary {
    display: none;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
    text-align: left;
    margin-top: 20px;
}