.home-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    background: #f7f9fc;
    font-family: 'Segoe UI', sans-serif;
    padding: 20px;
}

    .home-container h1 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

.button-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 300px;
}

.menu-button {
    display: block;
    padding: 15px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

    .menu-button:hover {
        background: #0056b3;
    }




.order-form-container {
    max-width: 700px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', sans-serif;
}

    .order-form-container h2 {
        text-align: center;
        margin-bottom: 30px;
    }

.form-group {
    margin-bottom: 20px;
}

.form-control {
    padding: 10px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 100%;
}

.add-button {
    display: inline-block;
    margin-bottom: 25px;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

    .add-button:hover {
        background: #0056b3;
    }

.selected-drinks {
    margin-top: 20px;
}

.drink-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.remove-button {
    background: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
}

    .remove-button:hover {
        background: #c82333;
    }

.submit-button {
    width: 100%;
    padding: 15px;
    background: #28a745;
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .submit-button:hover {
        background: #218838;
    }





.orders-container {
    max-width: 700px;
    margin: 40px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-family: 'Segoe UI', sans-serif;
}

    .orders-container h2 {
        text-align: center;
        margin-bottom: 30px;
    }

.order-summary {
    border: 1px solid #ccc;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    background: #f9f9f9;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .order-summary:hover {
        background: #eef2f7;
    }

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.order-details {
    margin-top: 15px;
    padding-left: 10px;
}

.drink-line {
    padding: 4px 0;
    border-bottom: 1px solid #eee;
}
.drink-line {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px solid #eee;
}

.price {
    font-weight: bold;
    color: #333;
}

.total-line {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #ccc;
    font-size: 1.1rem;
    text-align: right;
    color: #000;
}

.finish-button {
    margin-top: 10px;
    padding: 10px 15px;
    background: #28a745;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

    .finish-button:hover {
        background: #218838;
    }