#cookie-banner {
    position: fixed;
    bottom: 20px;
   @media (max-width: 425px) {
        left: 10px;
        right: 10px;
        transform: translateX(0);
    } 
    @media (min-width: 426px) {
        left: 50%;
        transform: translateX(-50%);
    }    
    background: #333;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
    font-size: 14px;
    display: none;
    text-align: center;
}

#cookie-banner button {
    margin-top: 10px;
    padding: 8px 12px;
    background: #ffffff;
    color: #333;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

#cookie-banner button:hover {
    background: #7f8381;
    color: white;
}
