#armx-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#armx-modal {
    background: #fff;
    padding: 40px;
    width: 420px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

#armx-close {
    position: absolute;
    top: 12px;
    right: 16px;
    cursor: pointer;
    font-size: 24px;
}

.armx-no-scroll {
    overflow: hidden;
}


/* Fade animations */
#armx-modal-overlay {
    opacity: 0;
    transition: opacity 0.25s ease;
}

#armx-modal-overlay.armx-visible {
    opacity: 1;
}

#armx-modal-overlay.armx-hidden {
    display: none !important;
}


.armx-hidden {
    display: none !important;
}

#armx-discovery-form input,
#armx-discovery-form textarea {
    width: 100%;
    margin-bottom: 16px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

#armx-discovery-form button {
    width: 100%;
    padding: 12px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
