/**
* ARES and RUZ spinner
 */

.button--loading::after {
    display: block!important;
    content: "";
    position: relative;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

#billing_toret_nafirmu_field{
    clear: both;
}

.teuvat-hidden-company {
    display: none;
}

.teuvat-hide-field{
    display: none; !important;
}

/***/
.teuvat-validation-message {
    display: block; /* Zobrazí se na novém řádku pod inputem */
    width: 100%;
    margin-top: 8px; /* Odsazení od inputu */
    font-size: 0.9em;
    font-weight: bold;
}

.teuvat-validation-message.teuvat-valid {
    color: #28a745; /* Zelená pro úspěch */
}

.teuvat-validation-message.teuvat-invalid {
    color: #dc3545; /* Červená pro chybu */
}

/* Můžeme přidat i ikony pro ještě lepší vizuální efekt */
.teuvat-validation-message.teuvat-valid::before {
    content: '✔ ';
    margin-right: 5px;
}

.teuvat-validation-message.teuvat-invalid::before {
    content: '✖ ';
    margin-right: 5px;
}

.toret-reverse-charge-section {
    margin-top: 1px;
    padding: 15px 20px;
    background: #fafafa;
}

.reverse-charge-status {
    font-weight: 600;
    position: relative;
    margin: 5px;
    padding-left: 26px; /* Space for icon */
}
.reverse-charge-status.active::before {
    content: "✔";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.reverse-charge-status.inactive::before {
    content: "✖";
    color: #dc3545;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}
