.cm-9a49aad4-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cm-9a49aad4-wrapper.is-open {
    opacity: 1;
    visibility: visible;
}

.cm-9a49aad4-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.cm-9a49aad4-content {
    position: relative;
    z-index: 100000;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cm-9a49aad4-wrapper.is-open .cm-9a49aad4-content {
    transform: scale(1);
}

.cm-9a49aad4-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #333333;
    transition: color 0.2s ease;
}

.cm-9a49aad4-close:hover {
    color: #ff0000;
}

.cm-9a49aad4-inner {
    margin-top: 10px;
}

/* Ensure mobile responsiveness */
@media (max-width: 768px) {
    .cm-9a49aad4-content {
        width: 95%;
        padding: 20px;
    }
}