.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 0.8rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-banner p {
    margin: 0 0 0.5rem 0;
}

.cookie-banner button {
    margin: 0 0.5rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.cookie-banner .accept {
    background: #8a2be2;
    color: white;
}

.cookie-banner .accept:hover {
    background: #7525c1;
}

.cookie-banner .decline {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.cookie-banner .decline:hover {
    background: #e8e8e8;
} 