.cookie-consent {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #37549a;
    color: #ffffff;
    padding: 15px;
    width: 90%;
    max-width: 470px;
    border-radius: 10px;
    text-align: left;
    z-index: 1000;
}

.cookie-consent a {
    color:#93d0ff;
    text-decoration: none;
}

.cookie-text {
    margin-bottom: 10px;

}

.cookie-button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.cookie-button {
    background:#93d0ff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}
.cookie-button-wrapper {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.cookie-link {
    color: #ffcc00;
    text-decoration: none;
    font-size: 14px;
}

.cookie-link:hover {
    text-decoration: underline;
}