.modal-overlay-custom {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.modal-overlay-custom.is-visible {
    opacity: 1;
}

.modal-card-custom {
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(109, 71, 49, 0.12);
    font-family: 'Poppins', sans-serif;
    color: #6D4731;
    transform: translateY(10px);
    transition: transform 0.2s ease;
}

.modal-overlay-custom.is-visible .modal-card-custom {
    transform: translateY(0);
}

.modal-content-custom {
    padding: 24px;
}

.modal-icon-custom {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 12px;
}

.modal-icon-custom.is-pink {
    color: #F881A1;
    background: rgba(248, 129, 161, 0.14);
}

.modal-icon-custom.is-red {
    color: #e57373;
    background: rgba(229, 115, 115, 0.14);
}

.modal-title-custom {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.2;
}

.modal-message-custom {
    margin: 0;
    color: #6D4731;
    font-size: 15px;
    line-height: 1.5;
}

.modal-validation-list {
    margin: 10px 0 0;
    padding-left: 18px;
}

.modal-validation-list li {
    margin-bottom: 6px;
    line-height: 1.4;
}

.modal-actions-custom {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.modal-btn-custom {
    border: 0;
    border-radius: 10px;
    padding: 10px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.modal-btn-custom.primary {
    background: #F881A1;
    color: #FFFFFF;
}

.modal-btn-custom.secondary {
    background: #f5f5f5;
    color: #6D4731;
}

@media (max-width: 768px) {
    .modal-card-custom {
        max-width: 90vw;
    }
}
