/*!
 * Simple code for popup when clicking on TECH
 * Newtek - Michael
 * 10/17/2023
 */
 
/* Styles for the popup message */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; /* Adjust this as needed for your design */
    max-width: 500px; /* Set a maximum width */
    padding: 20px;
    background: #FFF;
    border: 3px solid #ff0400;
    z-index: 9999;
    text-align: center;
    animation: none;
}
.popup h3 {
    animation: none;
}

/* Mobile optimization - adjust styles for smaller screens */
@media screen and (max-width: 767px) {
    .popup {
        width: 95%;
        max-width: none;
    }
    .popup h3 {
        font-size: 16px !important;
    }
}