#tm-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tm-popup-container {
    position: relative;
    background: #fff;
    padding: 10px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    border-radius: 5px;
    animation: fadeIn 0.5s;
}

.tm-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #000;
    color: #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    font-size: 20px;
    border: 2px solid #fff;
    z-index: 100;
}

.tm-popup-content img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Newsletter Styles */
.tm-newsletter-wrap {
    text-align: center;
}
.tm-form-container {
    padding: 20px;
}
.tm-form-container input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .tm-popup-container {
        width: 95%;
        margin-top: 20px;
    }
    .tm-popup-close {
        top: -10px;
        right: -10px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}