#mcc-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #333;
    color: #fff;
    padding: 1em;
    z-index: 9999;
    display: none;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    font-size: 14px;
}
#mcc-banner a { color: #fff; text-decoration: underline; }
.mcc-buttons { display: flex; gap: 10px; }
#mcc-banner button {
    background: #4CAF50; color: #fff;
    border: none; padding: 6px 12px;
    border-radius: 4px; cursor: pointer;
}
#mcc-decline { background: #f44336; }
#mcc-customise { background: #888; }

.mcc-modal {
    display: none; position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); z-index: 10000;
}
.mcc-modal-content {
    background: #fff; color: #000;
    max-width: 500px; margin: 10% auto;
    padding: 20px; border-radius: 8px;
}
.mcc-cookie-list { font-size: 13px; color: #444; margin-left: 25px; }
.mcc-cookie-list li { margin-bottom: 8px; color: #555; }