.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 3px solid #007bff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 15px 20px;
    font-size: 14px;
    animation: slideUp 0.3s ease-out;
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-banner-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.cookie-banner-text i {
    color: #007bff;
    font-size: 18px;
}

.cookie-banner-link {
    color: #007bff;
    text-decoration: underline;
    margin-left: 5px;
}

.cookie-banner-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner-hide {
    animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(100%);
    }
}

/* Dark mode support */
.dark-mode .cookie-banner {
    background: #343a40;
    color: #fff;
    border-top-color: #007bff;
}

.dark-mode .cookie-banner-link {
    color: #66b3ff;
}

.dark-mode .cookie-banner-link:hover {
    color: #4da6ff;
}

/* Responsive design */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 12px 15px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-banner-text {
        flex-direction: column;
        gap: 8px;
    }
    
    .cookie-banner-actions {
        justify-content: center;
    }
}
