.elementor-shortcode{
text-align: center;
}

/* SMT Custom Popup Frontend Styles */
.smt-popup-container {
    position: relative;
    display: inline-block;
}

.smt-popup-trigger {
    cursor: pointer;
}


.smt-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.smt-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.smt-popup-modal {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
    position: relative;
    transform: scale(0.8) translateY(-20px);
    transition: transform 0.3s ease;
    padding: 0;
}

.smt-popup-overlay.active .smt-popup-modal {
    transform: scale(1) translateY(0);
}

.smt-popup-header {
    padding: 20px 24px 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.smt-popup-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.smt-popup-close:hover {
    background-color: #f0f0f0;
    color: #333;
}

.smt-popup-body {
    padding: 0 24px 24px;
    min-height: 100px;
}

.smt-popup-body > * {
    margin: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .smt-popup-modal {
        margin: 20px;
        max-width: calc(100vw - 40px);
    }
    
    .smt-popup-header {
        padding: 16px 20px 0;
    }
    
    .smt-popup-body {
        padding: 0 20px 20px;
    }
}

/* Animation for content */
.smt-popup-content-wrapper {
    animation: fadeInUp 0.3s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}