#cookie-notification-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000001;
    padding: 20px;
    text-align: center;
}

.ft-cookie-content p {
    text-align: justify;
    margin: 0 0 15px;
    font-size: 15px;
    line-height: 25px;
    color: #333;
}
.ft-cookie-popup-buttons {
    display: flex
;
    justify-content: center;
    align-items: center;
}
.ft-cookie-popup-buttons button {
    margin: 10px 5px 0;
    padding: 8px 16px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    width: 100%;

}

#cookie-accept {
    background-color: #28a745;
    color: #fff;
}

#cookie-decline {
    background-color: #dbdbdb;
    color: #656565;
}

#cookie-accept:hover {
    background-color: #1e7e34;
}
#cookie-decline:hover {
    background-color: #c2c2c2;
}

#cookie-notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000000;
    display: none;
}

