.bg-image {
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

.z-index-1 {
    z-index: 1;
}

.border {
    border: 1px solid #cddc39 !important;
}

.meal-status-wrapper {
    max-width: 100%;
}

.meal-status {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    transition: all 0.2s ease;
}

/* Icon bubble */
.meal-status .status-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

/* Text */
.meal-status h6 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
}

.meal-status p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.5;
    color: #555;
}

/* 🔶 Pending */
.meal-status.pending {
    border-color: #fde68a;
    background: linear-gradient(90deg, #fff7ed, #ffffff);
}
.meal-status.pending .status-icon {
    background: #fde68a;
}
.meal-status.pending h6 {
    color: #b45309;
}

/* 🔵 Limited */
.meal-status.limited {
    border-color: #bfdbfe;
    background: linear-gradient(90deg, #eff6ff, #ffffff);
}
.meal-status.limited .status-icon {
    background: #bfdbfe;
}
.meal-status.limited h6 {
    color: #1e40af;
}

/* 🟢 Approved */
.meal-status.approved {
    border-color: #bbf7d0;
    background: linear-gradient(90deg, #ecfdf5, #ffffff);
}
.meal-status.approved .status-icon {
    background: #bbf7d0;
}
.meal-status.approved h6 {
    color: #15803d;
}
