.cookie-banner {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    margin: 0 auto;
    padding: 24px;
    background: var(--card-bg);
    color: var(--text-color);
    z-index: 1000;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-hover);
    border: 1px solid #f0f0f0;
}

.cookie-banner p {
    margin-bottom: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.cookie-banner .button-group {
    display: flex;
    gap: 12px;
}

.cookie-banner .btn,
.cookie-banner .btn-secondary {
    width: auto;
    padding: 10px 20px;
    margin-bottom: 0;
    font-size: 14px;
    height: 40px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }
}
