:root {
    --dcb-accept-color: #2271b1;
    --dcb-decline-color: #3c434a;
    --dcb-text-color: #ffffff;
    --dcb-bg-color: #1d2327;
}

.dcb-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dcb-bg-color);
    color: var(--dcb-text-color);
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 99999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    box-sizing: border-box;
}

.dcb-content {
    flex: 1 1 60%;
    padding-right: 20px;
}

.dcb-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.dcb-actions {
    flex: 1 1 30%;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.dcb-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.dcb-btn:hover {
    opacity: 0.9;
}

.dcb-btn-accept {
    background-color: var(--dcb-accept-color);
    color: #fff; /* Ensure text is white on primary buttons usually */
}

.dcb-btn-decline {
    background-color: transparent;
    border: 1px solid var(--dcb-decline-color);
    color: var(--dcb-text-color);
}

.dcb-floating-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--dcb-bg-color);
    color: var(--dcb-text-color);
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.dcb-floating-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .dcb-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .dcb-content {
        padding-right: 0;
        margin-bottom: 15px;
    }
    
    .dcb-actions {
        width: 100%;
        justify-content: center;
    }
}
