/* Estilos específicos para el Popup de Ejemplo */

.tudata-popup-container {
    position: relative;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    max-width: 450px;
    width: 90%;
    text-align: center;
    z-index: 1;
}

.tudata-popup-close-trigger {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 5px;
}

.tudata-popup-close-trigger:hover {
    color: #333;
}

.tudata-popup-title {
    margin: 0 0 15px 0;
    font-size: 24px;
    color: #333;
}

.tudata-popup-message {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.tudata-btn-primary {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.tudata-btn-primary:hover {
    background: #005177;
}

