.weekmealcaro-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.week-card {
    border: 1px solid #ddd;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    background: #fff;
}

.week-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.wmeal-table-block {
    margin-bottom: 15px;
}

.wmeal-table {
    width: 100%;
    border-collapse: collapse;
}

.wmeal-table th,
.wmeal-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.weekmealcaro-summary {
    border-top: 2px solid #333;
    padding-top: 10px;
    margin-top: 20px;
}

.vegmeal-whatsapp img {
    width: 40px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

/* Carousel */
.weekmealcaro-wrapper {
    position: relative;
    overflow: hidden;
}

.weekmealcaro-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 400%;
}

.week-slide {
    flex: 0 0 25%;
    padding: 15px;
    box-sizing: border-box;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 100;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}