#mcc-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    color: #333;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-family: Arial, sans-serif;
}
#mcc-banner .mcc-text {
    flex: 1;
    margin-right: 15px;
    font-size: 14px;
}
#mcc-banner .mcc-buttons button {
    margin-left: 10px;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}
#mcc-accept {
    background: #4CAF50;
    color: white;
}
#mcc-accept:hover {
    background: #45a049;
}
#mcc-reject {
    background: #f44336;
    color: white;
}
#mcc-reject:hover {
    background: #da190b;
}
