﻿.image-container {
    position: relative;
}

    .image-container::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #cd2027; /* Set the overlay color and opacity */
        pointer-events: none; /* Allows clicks to go through the overlay to the image */
    }
