.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f4f4f4;
    padding: 15px;
    text-align: center;
    border-top: 2px solid #ccc;
    z-index: 9999;
    font-family: Arial, sans-serif;
    color: #333;
    
    visibility: hidden; /* Hide until JavaScript displays it */
    transition: all 0.3s ease; /* Smoothly hide */
    overflow: hidden;
    height: auto;
}

#cookie-banner.hidden {
    display: none;
    height: 0;
    padding: 0;
    margin: 0;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
    color: #555;
}
.cookie-banner a {
    text-decoration: underline;
    color: #4a90e2;
}
.cookie-banner .cookie-button {
    margin-left: 10px;
    padding: 5px 10px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
}
.cookie-banner .cookie-button:hover {
    background-color: #007bff;
}

@media (max-width: 768px) {
    .cookie-banner p {
        font-size: 12px;
    }
    .cookie-banner .cookie-button {
        font-size: 12px;
        padding: 4px 8px;
    }
}
