.whatsapp__body {
    background-image: url("/static/assets/images/whatsapp_bg.png");
    background-repeat: repeat;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Add overlay behind all content */
.whatsapp__body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
    z-index: 0;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

/* Ensure all content stays above the overlay */
.whatsapp__body > * {
    position: relative;
    z-index: 1;
}
