﻿
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    z-index: 10000;
    animation: slideInUp 0.5s ease;
}

.cookie-popup-content {
    padding: 20px;
}

    .cookie-popup-content h4 {
        margin: 0 0 12px 0;
        color: #333;
        font-size: 18px;
    }

    .cookie-popup-content p {
        margin: 0 0 16px 0;
        color: #666;
        font-size: 14px;
        line-height: 1.5;
    }

.cookie-popup-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-privacy-link {
    color: #4A90E2;
    text-decoration: none;
    font-size: 14px;
}

    .cookie-privacy-link:hover {
        text-decoration: underline;
    }

.cookie-popup-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reject {
    background: #e0e0e0;
    color: #333;
}

    .btn-reject:hover {
        background: #d0d0d0;
    }

.btn-accept {
    background: #4CAF50;
    color: white;
}

    .btn-accept:hover {
        background: #45a049;
    }

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
}
