.star-modal {
        border-radius: var(--standard-rounded);

        & .modal-header {
            position: relative;
            border: none;

            & button {
                opacity: 1;
                padding: 0;
                width: 14px;
                height: 14px;
            }
        }

        & .modal-body {
            padding: 0;
        }

        & .modal-title {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            font-size: 24px !important;
            line-height: 36px;
            color: hsl(var(--base));
        }

        & .modal-content {
            border: none;
            padding: 20px;
            border-radius: var(--standard-rounded);
            gap: 32px;
        }

        & .modal-footer {
            border: none;
        }

    }

[data-theme="dark"] .star-modal {
    & .modal-content {
        background-color: hsl(var(--bg-color)) !important;
    }
    
    & .btn-close {
        color: #fff;
        background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    }
}