#rebrand-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 9999;
}

#rebrand-modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

#rebrand-modal {
    position: relative;
    background: #fff;
    max-width: 600px;
    width: 90%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin: 20px;
    overflow: hidden;
}

#rebrand-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #333;
    padding: 0;
    transition: color 0.2s ease;
}

#rebrand-modal-close:hover {
    color: #000;
}

#rebrand-modal-close::before {
    content: "×";
    display: block;
}

@media screen and (max-width: 640px) {
    #rebrand-modal {
        width: 95%;
        margin: 10px;
    }
}
