/* Cookie Banner Styling */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #fff;
    color: #ffffff;
    padding: 20px;
    font-size: 14px;
    display: none;
    z-index: 1000;
    border-radius: 15px;
    max-width: 300px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.cookie-banner a {
    color: #dc2626;
    text-decoration: underline;
}

.cookie-button {
    background-color: #dc2626;
    color: #333;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    display: block;
    width: 100%;
    text-align: center;
}

.cookie-button:hover {
    background-color: #ffffff;
}
