.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: #f8f9fa;
}
.delivery-btn {
    width: 100px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000000;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: bold;
    border-radius: 8px;
    transition: transform 0.2s;
    text-align: center;
}
.delivery-btn:hover {
    transform: scale(1.1);
}
.doordash {
    background-color: #FF6200; /* Bright orange */
}
.grubhub {
    background-color: #00FF00; /* Bright green */
}
.ubereats {
    background-color: #00CED1; /* Bright teal */
}
.pickup {
    background-color: #ADFF2F; /* Bright yellow-green */
}
