.dbf-consent {
    position: fixed;
    z-index: 99999;
    right: 16px;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 920px;
    margin: auto;
    padding: 18px 20px;
    border-radius: 14px;
    background: #151515;
    color: #ffffff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.dbf-consent[hidden] {
    display: none;
}

.dbf-consent p {
    margin: 4px 0 0;
    color: #e7e3da;
}

.dbf-consent__actions {
    display: flex;
    flex-shrink: 0;
    gap: 8px;
}

.dbf-consent button {
    padding: 10px 14px;
    border: 1px solid #ffffff;
    border-radius: 9px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.dbf-consent__reject {
    background: transparent;
    color: #ffffff;
}

.dbf-consent__accept {
    border-color: #0b5cad;
    background: #0b5cad;
    color: #ffffff;
}

.dbf-consent__accept:hover {
    border-color: #084a8c;
    background: #084a8c;
}

.dbf-consent button:focus-visible {
    outline: 3px solid #d7f25e;
    outline-offset: 3px;
}

@media (max-width: 640px) {
    .dbf-consent {
        align-items: stretch;
        flex-direction: column;
    }

    .dbf-consent__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .dbf-consent button {
        width: 100%;
    }
}
