/* Menu Card Container */
.menu-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px;
    margin: 20px auto;
}

/* Menu Image */
.menu-image {
    width: 100%;
    height: auto;
}

/* Menu Details */
.menu-details {
    padding: 15px;
}

/* Menu Item Details (Size and Price) */
.menu-item-details {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 10px 0;
}

/* Custom Select Form */
.custom-select-form {
    display: inline-block;
    width: 150px;
    font-family: Arial, sans-serif;
    position: relative;
}

/* Selected Item */
.select-selected {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    user-select: none;
    position: relative;
}

/* Dropdown Items */
.select-items {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 99;
}

/* Hide Dropdown by Default */
.select-hide {
    display: none;
}

/* Dropdown Item */
.select-item {
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-item:hover {
    background-color: #f1f1f1;
}

.select-selected:hover,
.select-item-active {
    background-color: #e9e9e9;
}

/* Custom Arrow */
.select-selected::after {
    content: "\25BC";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.select-selected.select-arrow-active::after {
    content: "\25B2";
}

/* Price Styling */
.price {
    font-size: 1.2em;
    color: #8B4513; /* Gold color from the image */
}

/* View Button */
.view-button {
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    text-align: center;
    width: 100%;
    margin-top: 10px;
}

/* Media Query for PC View */
@media (min-width: 768px) {
    .menu-card {
        max-width: 600px;
    }

    .menu-item-details {
        justify-content: flex-end; /* Align to the right on larger screens */
    }

    .custom-select-form {
        width: 180px;
    }

    .price {
        font-size: 1.5em;
    }
}