.cookie-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #1c1c1c;
    color: #fff;
    text-align: center;
    padding: 15px;
    z-index: 1000;
    font-size: 14px;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-bar button {
    margin: 5px;
    padding: 10px 20px;
    background: #7f9698;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}

.cookie-bar button:hover {
    background: #83d8df;
}

.cookie-bar a {
    color: #6f9fa4;
    text-decoration: none;
    margin-left: 10px;
    font-size: 14px;
}

.cookie-bar a:hover {
    color: #83d8df;
    
}