/* Styles for the cookie consent popup */
.cookie-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    /* right: 0; */
    /* background-color: rgba(0, 0, 0, 0.8); */
    color: white;
    text-align: center;
    z-index: 1000;
    margin: 9px;
    width: 360px;
}

.cookie-content {
    display: none;
    background-color: #333;
    padding: 10px;
    margin: 0 auto;
    max-width: 400px;
    border-radius: 5px;
    flex-direction: column;
}

.cookie-buttons {
    display: flex;
    flex: 1;
    margin-top: 10px;
    /* padding: 5px; */
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
}

.cookie-content button {
    background-color: #f1c40f;
    flex: 1 1 auto;
    border: none;
    color: #333;
    /* color: white; */
    padding: 6px 10px;
    cursor: pointer;
    width: 150px;
    border-radius: 3px;
}

.cookie-popup a {
    color: #f1c40f;
    text-decoration: none;
    margin-left: 10px;
}

.cookie-content p {
    margin-top: 0;
    margin-bottom: 5px;
}

.cookie-content img, svg {
    margin-bottom: 10px;
    vertical-align: middle;
    margin-right: auto;
    margin-left: auto;
}