/* ============================
   FEEDBACK SUCCESS BANNER
============================ */

#mcp-feedback-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #28a745;
    color: #fff;
    text-align: center;
    padding: 14px 20px;
    font-size: 14px;
    z-index: 10002;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

#mcp-feedback-banner.mcp-show {
    transform: translateY(0);
}
