
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 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: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-consent__accept {
    background-color: #542b8b;
    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;
}