/**
 * Simple WooCommerce reCAPTCHA - CSS
 */

.swr-recaptcha-container {
    margin: 15px 0;
    clear: both;
    display: inline-block;
}

.swr-recaptcha {
    min-height: 78px;
}

/* Centrare pentru reCAPTCHA checkbox în formulare */
.swr-center {
    display: flex;
    justify-content: flex-start;
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Stiluri specifice pentru Checkout WooCommerce */
form.checkout .swr-recaptcha-container {
    display: block;
    margin-bottom: 20px;
    width: 100%;
}

/* Ajustare z-index pentru insigna Google reCAPTCHA v2 Invisible și v3 */
.grecaptcha-badge {
    z-index: 99999 !important;
}

/* Ajustare aspect pe mobile */
@media screen and (max-width: 480px) {
    .swr-recaptcha-container {
        transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}
