﻿.main-container {
    max-width: 766px;
    margin: 60px auto;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.btnSave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}
.divHatsoffLink {
    align-items: center;
    display: flex;
    align-content: flex-start;
    justify-content: center;
    font-size: 35px;
}
.site-footer {
    text-align: center;
    background: #f4f4f4;
    font-size: 14px;
    color: #555;
}
.cookiealert {
    position: absolute;
    bottom: 0;
    overflow: hidden;
    left: 0;
    width: 100%;
    height: 35px;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    background: gray;
}

a {
    color: black;
}

.cookiealert.show {
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert p {
    text-decoration: none;
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}

.cookie_text a {
    padding: 5px 0;
    margin: 0;
}