#topside_greetingpopup_button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9995;

}

#topside_greetingpopup_button button {
    background-color: darkred;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
#topside_greetingpopup_button button span {
  padding-right:4px;
  font-size:14px;
}

#topside_greetingpopup_popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

#topside_greetingpopup_popup_content {
    background-color: white;
    border: 2px solid darkred;
    border-radius: 10px;
    padding: 20px;
    max-width: 400px;
    margin: 100px auto;
    text-align: center;
    font-size:12px;
}

#topside_greetingpopup_popup_content img {
    max-width: 250px;
    margin-bottom: 20px;
}

#topside_greetingpopup_popup_content p {
    margin: 10px 0;
}

#topside_greetingpopup_close {
    background-color: darkred;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    #topside_greetingpopup_popup_content {
        max-width: 90%;
        margin: 50px auto;
        padding: 15px;
        
    }
    #topside_greetingpopup_button button span {
        padding-right:4px;
        font-size:13px;
      }

    #topside_greetingpopup_button button {
        padding: 8px 16px;
    }

    #topside_greetingpopup_popup_content img {
        max-width: 220px;
        padding-top:15px;
    }
}
