/* =========================
   MCP FEEDBACK MODAL
   (Fully Isolated System)
========================= */

#mcp-feedback-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

/* OPEN STATE */
#mcp-feedback-modal.mcp-feedback-open {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

/* OVERLAY */
#mcp-feedback-modal .mcp-feedback-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

/* PANEL */
#mcp-feedback-modal .mcp-feedback-panel {
    position: relative;
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    overflow-y: auto;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* CLOSE BUTTON */
.mcp-feedback-close {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 20px;
    border: none;
    background: none;
    cursor: pointer;
}

/* FORM */
#mcp-feedback-form select,
#mcp-feedback-form textarea {
    width: 100%;
    margin-bottom: 14px;
}

#mcp-feedback-form .mcp-btn {
    width: 100%;
}

/* MOBILE */
@media (max-width: 600px) {

    #mcp-feedback-modal.mcp-feedback-open {
        padding: 12px;
    }

    #mcp-feedback-modal .mcp-feedback-panel {
        width: 100%;
        max-width: 100%;
    }

}
