.cookie_popup {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.549);
    z-index: 9999999999999999999999 !important;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px !important;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
    padding: 20px;
    z-index: 9999;
    font-family: system-ui, sans-serif;
}

.cookie-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111;
}

.cookie-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.btn-outline {
    background: transparent;
    border: 1px solid #ccc;
    color: #333;
}

.btn-outline:hover {
    background: #f7f7f7;
}

.btn-primary {
    background: #0d6efd;
    border: none;
    color: #fff;
}

.btn-primary:hover {
    background: #0b5ed7;
}