.custom-modal-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.custom-modal-view > .custom-modal-dialog {
    background: white;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeAnim 0.3s ease-out;
    padding: 32px 32px 24px 32px;
    position: relative;
}

.custom-modal-view > .custom-modal-dialog fast-icon.custom-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #333;
    font-size: 20px;
    cursor: pointer;
}

.custom-modal-view > .custom-modal-dialog fast-icon.custom-close:hover {
    opacity: 0.8;
}

.custom-modal-view > .custom-modal-dialog .custom-modal-body {
    font-size: 16px;
    color: #333;
}

.custom-modal-view > .custom-modal-dialog .custom-modal-footer {
    margin-top: 20px;
    padding-bottom: 0px !important;
}

@media (max-width: 768px) {
    .custom-modal-view > .custom-modal-dialog {
        width: 92vw;
        padding: 16px 16px 24px 16px;
    }
}

.custom-modal-view .hide-custom-modal {
    display: none;
}

#profile-prvclvl-modal {
    .prvclvl-modal-body {
        width: 650px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 0 auto;

        .prvclvl-modal-logo {
            display: block;
            height: 120px;
            margin-bottom: 12px;
        }

        .prvclvl-set-title {
            font-family: 'Poppins';
            font-weight: 600;
            font-size: 24px;
            line-height: 28px;
            letter-spacing: 0%;
        }

        .prvclvl-set-description {
            font-family: 'Lato';
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0%;

        }
    }

    .prvclvl-modal-footer {
        display: flex;
        justify-content: flex-end;
        gap: 12px;

        .no-underline {
            text-decoration: none;
        }

        .no-underline a:hover {
            text-decoration: none !important;
        }

        .no-underline a:active {
            color: #ffffff;
            text-decoration: none !important;
        }

        .no-underline a:visited {
            color: #ffffff;
            text-decoration: none !important;
        }
    }

    @media (max-width: 768px) {

        .prvclvl-modal-body {
            width: auto;
            padding: 15px;
            text-align: center;
        }

        .prvclvl-modal-footer {
            flex-direction: column-reverse;
        }
    }
}