﻿#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 300px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
    z-index: 1000;
}

    #cookie-banner h4 {
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 16px;
    }

    #cookie-banner p {
        font-size: 14px;
        margin-bottom: 15px;
        color: #444;
    }

    #cookie-banner button {
        padding: 8px 12px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
        margin-right: 8px;
    }

#accept-btn {
    background-color: #4CAF50;
    color: white;
}

#reject-btn {
    background-color: #e74c3c;
    color: white;
}

.whatsapp-float {
    position: fixed;
    bottom: -25px;
    right: -25px;
    z-index: 999;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
    }

    .whatsapp-float img {
        width: 150px;
        height: 150px;
    }