.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    background: #cccccc;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 20px;
    z-index: 10000;
    border-radius: 8px;
    border: 1px solid #eee;
}
.cookie-content p {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.cookie-buttons button {
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    transition: 0.2s;
}
.btn-accept { background: #007bff; color: #fff; }
.btn-accept:hover { background: #0056b3; }
.btn-partial { background: #e9ecef; color: #333; }
.btn-deny { background: #f8f9fa; color: #666; border: 1px solid #ddd !important; }
