/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: white;
    padding: 1rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    border-top: 1px solid #374151;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner.fade-out {
    animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(100%);
    }
}

.cookie-banner-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
    min-width: 300px;
}

.cookie-icon {
    flex-shrink: 0;
    color: #60a5fa;
    margin-top: 0.25rem;
}

.cookie-banner-text p {
    margin: 0 0 0.5rem 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

.cookie-banner-text p:last-child {
    margin-bottom: 0;
}

.cookie-links {
    color: #d1d5db;
}

.cookie-links a {
    color: #60a5fa;
    text-decoration: underline;
}

.cookie-links a:hover {
    color: #93c5fd;
}

.cookie-links span {
    margin: 0 0.5rem;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Only include minimal button styling - buttons will use your existing styles */
.cookie-banner-actions button {
    cursor: pointer;
    transition: all 0.2s;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-actions {
        justify-content: space-between;
        width: 100%;
    }
}