/* Modal de validação / mensagem global (EraPet) - acima de modais de agendamento (z-index 10000) */
.validation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10500;
}

.validation-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.validation-modal__content {
    background: #fff;
    border-radius: 12px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    animation: eraPetModalSlideIn 0.3s ease;
}

.validation-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px 24px;
    border-bottom: 1px solid #E9EAEB;
}

.validation-modal__title {
    color: #252B37;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.validation-modal__close {
    background: none;
    border: none;
    color: #535862;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.validation-modal__close:hover {
    background: #F3F4F5;
    color: #252B37;
}

.validation-modal__body {
    padding: 20px 24px;
}

.validation-modal__message {
    color: #535862;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.validation-modal__footer {
    padding: 16px 24px 24px 24px;
    display: flex;
    justify-content: flex-end;
}

.validation-modal__button {
    background: #1F7C7A;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.validation-modal__button:hover {
    background: #186664;
}

.validation-modal__footer--actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.validation-modal__button--secondary {
    background: #E9EAEB;
    color: #535862;
}

.validation-modal__button--secondary:hover {
    background: #D5D7DA;
    color: #252B37;
}

@keyframes eraPetModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
