.menu-section {
    padding: 20px;
}



p {
    color: black;
}

.card-text {
    margin-top: 20px;
}

.menu-item-info {
    width: 80%;
    margin: 10px auto;
    background-color: blanchedalmond;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.tab-info-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.tab-info {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    background: white;
    padding: 0 10px;
    text-align: center;
    gap: 10px;
    max-width: fit-content;
    box-sizing: border-box;
    border: 2px solid #333;
    border-radius: 5px;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
}

.tab-button {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: orange;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
    color: black;
}

.tab-button.active {
    background-color: #007bff;
    color: black;
    border-color: #007bff;
}

.tab-button:hover {
    background-color: #0056b3;
    color: black;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-button {
        width: 100%;
        text-align: center;
    }

    .tab-info {
        font-size: 1em;
    }

    .card1 {
        padding: 15px;
    }
}
