.nada-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nada-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--wp--preset--color--black-with-opacity);
}

.nada-modal-wrapper {
    position: relative;
    z-index: 1000000;
    max-width: 800px;
    width: 90%;
}

.nada-modal-wrapper .modal-lg {
    max-width: 900px;
}

.nada-modal-content {
    position: relative;
    background: var(--wp--preset--color--white);
    border: 1px solid var(--wp--preset--color--primary);
    border-radius: var(--wp--preset--border-radius--md);
    overflow: hidden;
    box-shadow: var(--wp--preset--shadow--md);
}

.nada-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--wp--preset--color--tinted-white);
    background: var(--wp--preset--color--white)
}

.nada-modal-header h3 {
    margin: 0;
    font-size: var(--wp--preset--font-size--xl-normal);
    font-weight: 600;
    color: var(--wp--preset--color--primary);
}

.nada-modal-close {
    background: none;
    border: none;
    font-size: var(--wp--preset--font-size--x-large-id);
    line-height: 1;
    color: var(--wp--preset--color--primary);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--wp--preset--border-radius--sm);
    transition: all 0.2s ease;
}

.nada-modal-close:hover {
    background: var(--wp--preset--color--tinted-white);
    color: var(--wp--preset--color--primary);
}

.nada-modal-body {
    padding: 30px 25px;
    background-color: var(--wp--preset--color--white);
    min-height: 100px;
}

.nada-modal-body p {
    margin: 0;
    font-size: var(--wp--preset--font-size--normal);
    line-height: 1.6;
    color: var(--wp--preset--color--primary);
}

.nada-modal-footer {
    border-top: 1px solid var(--wp--preset--color--tinted-white);
    padding: 15px 20px;
    background-color: var(--wp--preset--color--tinted-white);
    display: flex;
    justify-content: center;
    gap: 10px;
}

.nada-modal-footer .button {
    padding: 10px 24px;
    font-weight: 500;
    color: var(--wp--preset--color--white);
    border-radius: var(--wp--preset--border-radius--md);
    border: 1px solid var(--wp--preset--color--primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 110px;
    justify-content: center;
    background-color: var(--wp--preset--color--primary);
    transition: all 0.2s ease;
}

.nada-modal-footer .button:hover {
    background-color: var(--wp--preset--color--primary);
    border-color: var(--wp--preset--color--primary);
}

.nada-modal-footer .button.cancel-action {
    background-color: var(--wp--preset--color--oxygenated-blue);
    border-color: var(--wp--preset--color--oxygenated-blue);
}

.nada-modal-footer .button.cancel-action:hover {
    background-color: var(--wp--preset--color--oxygenated-blue);
    border-color: var(--wp--preset--color--oxygenated-blue);
}


body.nada-modal-open {
    overflow: hidden !important;
}

.spinner-border {
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: text-bottom;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: var(--wp--preset--border-radius--rond);
}

.spinner-border.d-none {
    display: none;
}