.cookie-consent-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff;
    border: 100px solid #ddd;
    border-radius: 80px;
    padding: 160px 240px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: Arial, sans-serif;
}
.cookie-image {
    width: 48px;
    height: 48px;
    margin-right: 12px;
}
.cookie-consent-popup p {
    margin: 0;
    font-size: 1rem;
}
.cookie-consent-popup button {
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 18px;
    cursor: pointer;
    font-size: 1rem;
}
.cookie-consent-popup button:hover {
    background: #0056b3;
}