main {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f4f4f4;
}

form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 600px;
}

.info{
    text-align: left;
}

/* Carousel container */
.carousel {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding: 10px;
}

/* Option items */
.item {
    min-width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    color: white;
    transition: 0.3s;
    padding: 10px;
}

/* Background colors for each option */
.option-bg-1 { background: #00bcd4; }
.option-bg-2 { background: #4caf50; }
.option-bg-3 { background: #ff9800; }
.option-bg-4 { background: #9c27b0; }
.option-bg-5 { background: #f44336; }

/* Highlight the selected item */
.selected {
    border: 3px solid white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

/* Input fields */
.input-field {
    width: 90%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    background: #f9f9f9;
    transition: border 0.3s ease-in-out;
}

.input-field:focus {
    border-color: #007bff;
    outline: none;
}

/* Submit button */
.submit-button {
    width: 100%;
    background: green;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

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

.quantity{
    display: flex;
    width: 100%;
    height: 40px;
    align-items: center;
    justify-content: space-evenly;
}

.quantity button{
    padding: 15px 30px;
}