*{
    margin: 0;
    padding:0;
}
body {
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    height: 100vh;
    background-image: url(nc_assets/img/first.jpeg);
    background-size: cover;
}

img {
    max-height: 50px
}

#meniuSelection {
    background-color: #111827;
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

.tab {
    color: white;
    padding: 1rem;
}

    .tab.active {
        background-color: white;
        border-left: 2px solid white;
        border-right: 2px solid white;
        border-bottom: 5px solid #111827;
        color: #111827;
        transition: color 0.15s 0.1s ease-in-out;
    }
/* Scrollable list container */

#contentArea {
    display: flex;
    margin-top: 15%;
}

.drink-list {
    display: flex;
    flex-direction: row;
    justify-content: left;
    overflow-x: scroll;
    margin: 0;
    padding: 40px;
    list-style: none;
    height: 400px;
    align-items: center;
    background-color: rgb(128, 128, 128, 0.5);
    user-select: none;
}
/* Style each drink card */
.drink-card {
    border: 1px solid #111827; /* Dark border to match header */
    padding: 16px;
    user-select: none;
    background-color: #f9fafb; /* Light gray background */
    border-radius: 8px;
    margin: 8px 0; /* Space between cards */
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 15px;
    margin-right: 15px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Added for smooth transition */
}

/* Ingredients list inside each card */
.ingredients-list {
    margin: 10px 0 0 0;
    user-select: none;
    padding-left: 20px;
    list-style-type: disc; /* Bullet points for ingredients */
}

/* Optional: Style drink name */
.drink-card h3 {
    margin: 0 0 8px 0;
    user-select: none;
    font-size: 1.5rem;
    color: #111827;
}
/* Animation for highlighted drink card */
.drink-card.highlight {
    color: white;
    background-color: #111827;
    border: 2px solid #00FF00;
    transform: scale(1.2);
    box-shadow: 0 0 15px 5px #00ff00;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .drink-card.highlight h3 {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        color: white;
    }

.cereOferta {
    color: #111827;
    background-color: #111827;
    justify-items: end;
}
