/* Modal styles */
.couponmodal {
    display: none; /* Hidden by default */
    position: fixed; 
    z-index: 1000; /* Sits on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border-radius: 10px;
    width: 90%; /* Responsive width */
    max-width: 400px;
    
}
.modal-content h3{
    text-align: center;
    font-size: 1.5rem;
    font-family: "Lato", Helvetica, Arial, sans-serif ;
    line-height: 20px;
    color: #1D7F36;
}
.modal-content p{
    font-family: "Lato", Helvetica, Arial, sans-serif ;
    font-size: 16px;
    font-weight: 400;
    text-align: center;

}
.clickhere{
    font-family: "Lato", Helvetica, Arial, sans-serif ;
    font-weight: 500 !important;
}
.close-btn {
    float: left;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: red;
}

@media screen and (max-width: 768px) {
    .modal-content {
        width: 95%;
    }
}
