#consentBox {
    background: #000;
    padding: 5px;
    border-radius: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 999;
}

#consentBox.hide {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

::selection {
    color: #fff;
    background: #229a0f;
}

#consentContent p {
    color: #FFF;
    margin: 5px 0 10px 0;
}

#consentContent .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
}

.consentButton,
.rejectButton {
    padding: 7px 15px;
    border: none;
    outline: none;
    color: #fff;
    font-size: .8rem;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consentButton {
    background: #d62922;
    margin-right: 10px;
}

.rejectButton {
    color: #FFF;
    background: transparent;
    border: 2px solid #d62922;
    text-decoration: none;
}

#consentBox img {
    max-width: 90px;
}

#consentHeader {
    font-size: .8rem;
    color: #FFF;
    font-weight: 600;
    margin-top: 10px;
}
button:hover{
    opacity: .7 !important;
}