﻿.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 10000;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .cookie-content h3 {
        margin: 0;
        font-size: 1.5rem;
    }

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .cookie-option input[type="checkbox"] {
        width: 18px;
        height: 18px;
        cursor: pointer;
    }

    .cookie-option label {
        cursor: pointer;
        user-select: none;
    }

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .cookie-buttons button {
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        transition: all 0.3s ease;
    }

.btn-accept-all {
    background: #10b981;
    color: white;
}

.btn-accept-selected {
    background: #3b82f6;
    color: white;
}

.btn-reject-all {
    background: #ef4444;
    color: white;
}

.cookie-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cookie-links {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

    .cookie-links a {
        color: #d1d5db;
        text-decoration: none;
        font-size: 0.9rem;
    }

        .cookie-links a:hover {
            color: white;
            text-decoration: underline;
        }

/* Responsive */
@media (max-width: 768px) {
    .cookie-content {
        padding: 15px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-links {
        flex-direction: column;
        gap: 10px;
    }
}
