/* Cookie Consent Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ecf0f1;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    border-top: 4px solid #3498db;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    display: none;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner.show {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner.hide {
    animation: slideDown 0.4s ease-out forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-banner-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-right: 1rem;
}

.cookie-banner-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: #3498db;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-banner-text a:hover {
    color: #5dade2;
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    white-space: nowrap;
}

.cookie-accept-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cookie-accept-btn:hover {
    background-color: #2980b9;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.cookie-accept-btn:active {
    transform: scale(0.98);
}

/* Responsive styles */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .cookie-banner.show {
        flex-direction: column;
    }

    .cookie-banner-content {
        flex-direction: column;
        margin-right: 0;
        gap: 1rem;
    }

    .cookie-banner-text {
        font-size: 0.9rem;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-accept-btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 0.75rem;
        border-top-width: 3px;
    }

    .cookie-banner-text {
        font-size: 0.85rem;
    }

    .cookie-accept-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
}
