/* trustx-popup.css */

/* Styles for the Smart Block Popup */
.trustx-smart-block-popup {
    z-index: 100000; /* Ensure it's on top of other modals */
}

.trustx-smart-block-modal-content {
    max-width: 600px; /* Wider for better presentation of buttons */
    padding: 30px; /* More padding */
    border-left: 8px solid #dc3545; /* Red accent for blocking */
    text-align: center;
}

.trustx-smart-block-modal-content .trustx-modal-title {
    color: #dc3545; /* Red title */
    font-size: 2.2em; /* Larger title */
    margin-bottom: 15px;
    border-bottom: none; /* Remove border if present */
}

.trustx-smart-block-modal-content .trustx-popup-general-message {
    font-size: 1.1em;
    color: #444;
    line-height: 1.7;
    margin-bottom: 30px; /* More space before buttons */
}

.trustx-smart-block-modal-content .trustx-popup-actions {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    justify-content: center;
    gap: 20px; /* Space between buttons */
    margin-bottom: 25px;
}

.trustx-popup-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px; /* Large, prominent buttons */
    border-radius: 8px; /* More rounded */
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    min-width: 180px; /* Ensure buttons are a decent size */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}

.trustx-popup-button .dashicons {
    font-size: 1.5em; /* Larger icons */
    margin-right: 10px;
    vertical-align: middle;
}

.trustx-popup-button-call {
    background-color: #28a745; /* Green for call */
}

.trustx-popup-button-call:hover {
    background-color: #218838;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.trustx-popup-button-whatsapp {
    background-color: #25d366; /* WhatsApp green */
}

.trustx-popup-button-whatsapp:hover {
    background-color: #1ea852;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.trustx-popup-disclaimer {
    font-size: 0.85em;
    color: #888;
    margin-top: 20px;
}

/* Responsive adjustments for popup */
@media (max-width: 480px) {
    .trustx-smart-block-modal-content {
        padding: 20px;
    }
    .trustx-smart-block-modal-content .trustx-modal-title {
        font-size: 1.8em;
    }
    .trustx-smart-block-modal-content .trustx-popup-general-message {
        font-size: 1em;
    }
    .trustx-popup-button {
        width: 100%;
        min-width: unset;
        padding: 12px 20px;
        font-size: 1em;
    }
    .trustx-popup-actions {
        flex-direction: column;
    }
}