.consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: #fff;
    padding: 12px 16px;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.4);
    font-family: sans-serif;
    z-index: 9999;
}

.consent-content {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.consent-text a {
    color: #9cf;
}

.consent-buttons {
    display: flex;
    gap: 12px;
}

.consent-buttons button {
    padding: 8px 16px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
}

.consent-accept {
    background: #4caf50;
    color: #fff;
}

.consent-decline {
    background: #f44336;
    color: #fff;
}