
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #A7B591;
    color: white;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
}

.cookie-bar span {
    flex: 1;
}

.cookie-bar button {
    padding: 5px 5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.cookie-consent__accept {
    background-color: #1F3A56;
    color: white;
}

.cookie-consent__accept:hover {
    background-color: #229954;
}

.cookie-consent__decline {
    background-color: #95a5a6;
    color: white;
}

.cookie-consent__decline:hover {
    background-color: #7f8c8d;
}

.cookie-bar a {
    color: #3498db;
    text-decoration: none;
    padding: 10px;
}

.cookie-bar a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-bar {

        font-size: 0.5rem;
    }
}