
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f4f5f6;
    border-top: 2px solid #ccc;
    padding: 6px 10px;
    font-family: Arial, sans-serif;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    height: 180px;
    z-index: 99999;
    display: none;
    box-sizing: border-box;
}

#cookie-banner h3 {
    margin: 0 0 4px 0;
    font-size: 13px;
    font-weight: bold;
}

#cookie-banner p {
    font-size: 11px;
    line-height: 1.2;
    margin: 2px 0;
}

#cookie-banner label {
    display: block;
    margin: 3px 0;
    font: 10px Verdana, Geneva, sans-serif;
}

#cookie-banner .buttons {
    margin-top: 8px;
}

#cookie-banner button {
    margin-right: 6px;
    padding: 5px 9px;
    border: none;
    cursor: pointer;
    background: #0073e6;
    color: #fff;
    border-radius: 3px;
    font-size: 11px;
}

#cookie-banner button:hover {
    background: #005bb5;
}

.cookie-container {
    display: flex;
    align-items: flex-start;
}

/*.cookie-logo {
    width: 12%;
    text-align: center;
}

.cookie-logo img{
    max-width: 70px;
}*/

.cookie-tabs {
    width: 88%;
    padding-left: 10px;
}

.tab-menu {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 8px;
    margin-bottom: 5px;
}

.tab-menu li {
    cursor: pointer;
    padding: 4px 8px;
    background: #eee;
    border-radius: 3px;
    border: 1px dotted #ccc;
    font-size: 11px;
}

.tab-menu li:hover {
    background: #ddd;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

#cookie-banner ol {
    margin: 4px 0;
    padding-left: 15px;
    font-size: 11px;
    line-height: 1.2;
}
